We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f29c855 commit c27879cCopy full SHA for c27879c
tests/PHPStan/Rules/Functions/CallToFunctionParametersRuleTest.php
@@ -1961,6 +1961,10 @@ public function testBug12051(): void
1961
1962
public function testBug8046(): void
1963
{
1964
+ if (PHP_VERSION_ID < 80100) {
1965
+ $this->markTestSkipped('Test requires PHP 8.1.');
1966
+ }
1967
+
1968
$this->analyse([__DIR__ . '/data/bug-8046.php'], []);
1969
}
1970
@@ -1975,6 +1979,10 @@ public function testBug11942(): void
1975
1979
1976
1980
public function testBug11418(): void
1977
1981
1982
1983
1984
1985
1978
1986
$this->analyse([__DIR__ . '/data/bug-11418.php'], []);
1987
1988
0 commit comments