Skip to content

Commit 93e2261

Browse files
committed
Discard changes to tests/PHPStan/Analyser/nsrt/narrow-cast.php
1 parent 7955549 commit 93e2261

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/PHPStan/Analyser/nsrt/narrow-cast.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
/** @param array<mixed> $arr */
88
function doFoo(string $x, array $arr): void {
99
if ((bool) strlen($x)) {
10-
assertType('non-empty-string', $x);
10+
assertType('string', $x); // could be non-empty-string
1111
} else {
12-
assertType("''", $x);
12+
assertType('string', $x);
1313
}
1414
assertType('string', $x);
1515

0 commit comments

Comments
 (0)