Skip to content

Commit 4dd10f3

Browse files
committedJan 15, 2025··
Fix build
1 parent d38ed50 commit 4dd10f3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

Diff for: ‎tests/PHPStan/Rules/Comparison/ImpossibleCheckTypeFunctionCallRuleTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -1111,6 +1111,10 @@ public function testBug3979(): void
11111111

11121112
public function testBug8464(): void
11131113
{
1114+
if (PHP_VERSION_ID < 80000) {
1115+
$this->markTestSkipped('Test requires PHP 8.0.');
1116+
}
1117+
11141118
$this->checkAlwaysTrueCheckTypeFunctionCall = true;
11151119
$this->treatPhpDocTypesAsCertain = true;
11161120
$this->analyse([__DIR__ . '/data/bug-8464.php'], []);

0 commit comments

Comments
 (0)
Please sign in to comment.