We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2811e7 commit 9fb6359Copy full SHA for 9fb6359
tests/PHPStan/Rules/Methods/FinalPrivateMethodRuleTest.php
@@ -48,7 +48,7 @@ public function testRule(int $phpVersion, array $errors): void
48
$testVersion->getMajorVersionId() !== $runtimeVersion->getMajorVersionId()
49
|| $testVersion->getMinorVersionId() !== $runtimeVersion->getMinorVersionId()
50
) {
51
- $this->markTestSkipped('Test requires PHP version ' . $phpVersion);
+ $this->markTestSkipped('Test requires PHP version ' . $testVersion->getMajorVersionId() .'.'. $testVersion->getMinorVersionId() .'.*');
52
}
53
54
$this->analyse([__DIR__ . '/data/final-private-method.php'], $errors);
0 commit comments