We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6b20da commit 44215e4Copy full SHA for 44215e4
tests/PHPStan/Analyser/NodeScopeResolverTest.php
@@ -26,6 +26,10 @@ class NodeScopeResolverTest extends TypeInferenceTestCase
26
private static function findTestFiles(): iterable
27
{
28
foreach (self::findTestDataFilesFromDirectory(__DIR__ . '/nsrt') as $testFile) {
29
+ if (str_ends_with($testFile, 'tests/PHPStan/Analyser/nsrt/bug-2471.php') && PHP_VERSION_ID < 80000) {
30
+ continue;
31
+ }
32
+
33
yield $testFile;
34
}
35
0 commit comments