Skip to content

Commit d7490b7

Browse files
committed
Update preg_match_shapes.php
1 parent fcbc002 commit d7490b7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/PHPStan/Analyser/nsrt/preg_match_shapes.php

+5
Original file line numberDiff line numberDiff line change
@@ -1010,3 +1010,8 @@ function bug12749f(string $str): void
10101010
assertType('array{non-empty-string}', $match); // could be numeric-string
10111011
}
10121012
}
1013+
1014+
function bug12397(string $string) : array {
1015+
$m = preg_match('#\b([A-Z]{2,})-(\d+)#', $string, $match);
1016+
assertType('list{0?: string, 1?: non-falsy-string, 2?: numeric-string}', $match);
1017+
}

0 commit comments

Comments
 (0)