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 ff83f93 commit 9624524Copy full SHA for 9624524
tests/PHPStan/Analyser/nsrt/ini-get.php
@@ -32,5 +32,10 @@ function doFoo() {
32
} else {
33
assertType('string|false', ini_get("max_memory_limit"));
34
}
35
- assertType('string|false', ini_get("max_memory_limit"));
+ if (PHP_VERSION_ID >= 80300) {
36
+ assertType('string|false', ini_get("max_memory_limit"));
37
+ }
38
+ if (PHP_VERSION_ID < 80300) {
39
40
41
0 commit comments