Skip to content

Commit ee7f853

Browse files
committed
Update preg_match_shapes.php
1 parent 7879575 commit ee7f853

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
@@ -960,3 +960,8 @@ function bug11744(string $string): void
960960
}
961961
assertType('array{0: string, 1: non-empty-string, 2?: non-falsy-string}', $matches);
962962
}
963+
964+
function bug12397(string $string) : array {
965+
$m = preg_match('#\b([A-Z]{2,})-(\d+)#', $string, $match);
966+
assertType('list{0?: string, 1?: non-falsy-string, 2?: numeric-string}', $match);
967+
}

0 commit comments

Comments
 (0)