We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aef32f commit 6b92469Copy full SHA for 6b92469
tests/Rules/PHPUnit/MockMethodCallRuleTest.php
@@ -4,6 +4,7 @@
4
5
use PHPStan\Rules\Rule;
6
use PHPStan\Testing\RuleTestCase;
7
+use const PHP_VERSION_ID;
8
9
/**
10
* @extends RuleTestCase<MockMethodCallRule>
@@ -38,6 +39,9 @@ public function testRule(): void
38
39
40
public function testBug227(): void
41
{
42
+ if (PHP_VERSION_ID < 80000) {
43
+ self::markTestSkipped('Test requires PHP 8.0.');
44
+ }
45
$this->analyse([__DIR__ . '/data/bug-227.php'], []);
46
}
47
tests/Rules/PHPUnit/data/bug-227.php
@@ -1,4 +1,4 @@
1
-<?php
+<?php // lint >= 8.0
2
3
namespace Bug227;
0 commit comments