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 50bbac5 commit 4c4f9b1Copy full SHA for 4c4f9b1
tests/PHPStan/Analyser/data/explode-php74.php
@@ -9,6 +9,7 @@ class ExplodingStrings
9
public function doFoo(string $s): void
10
{
11
assertType('non-empty-list<lowercase-string>|false', explode($s, 'foo'));
12
- assertType('non-empty-list<string>|false', explode($s, 'FOO'));
+ assertType('non-empty-list<uppercase-string>|false', explode($s, 'FOO'));
13
+ assertType('non-empty-list<string>|false', explode($s, 'Foo'));
14
}
15
0 commit comments