@@ -300,7 +300,7 @@ function (string $size): void {
300
300
if (preg_match ('~^a\.(b)?(c)?d~ ' , $ size , $ matches ) !== 1 ) {
301
301
throw new InvalidArgumentException (sprintf ('Invalid size "%s" ' , $ size ));
302
302
}
303
- assertType ("array {0: non-falsy-string, 1?: ''|'b', 2?: 'c'} " , $ matches );
303
+ assertType ("list {0: non-falsy-string, 1?: ''|'b', 2?: 'c'} " , $ matches );
304
304
};
305
305
306
306
function (string $ size ): void {
@@ -525,15 +525,15 @@ function bug11323(string $s): void {
525
525
526
526
function (string $ s ): void {
527
527
preg_match ('/%a(\d*)/ ' , $ s , $ matches );
528
- assertType ("array {0?: string, 1?: ''|numeric-string} " , $ matches );
528
+ assertType ("list {0?: string, 1?: ''|numeric-string} " , $ matches );
529
529
};
530
530
531
531
class Bug11376
532
532
{
533
533
public function test (string $ str ): void
534
534
{
535
535
preg_match ('~^(?:(\w+)::)?(\w+)$~ ' , $ str , $ matches );
536
- assertType ('array {0?: string, 1?: string, 2?: non-empty-string} ' , $ matches );
536
+ assertType ('list {0?: string, 1?: string, 2?: non-empty-string} ' , $ matches );
537
537
}
538
538
539
539
public function test2 (string $ str ): void
@@ -564,7 +564,7 @@ function (string $s): void {
564
564
}
565
565
566
566
if (preg_match ($ p , $ s , $ matches )) {
567
- assertType ("array {0: non-falsy-string, 1: 'x'|'£'|numeric-string, 2?: ''|numeric-string, 3?: 'x'} " , $ matches );
567
+ assertType ("list {0: non-falsy-string, 1: 'x'|'£'|numeric-string, 2?: ''|numeric-string, 3?: 'x'} " , $ matches );
568
568
}
569
569
};
570
570
@@ -730,7 +730,7 @@ function (string $s): void {
730
730
731
731
function (string $ s ): void {
732
732
preg_match ('~a|(\d)|(\s)~ ' , $ s , $ matches );
733
- assertType ("array {0?: string, 1?: '', 2?: non-empty-string}|array {0?: string, 1?: numeric-string} " , $ matches );
733
+ assertType ("list {0?: string, 1?: '', 2?: non-empty-string}|list {0?: string, 1?: numeric-string} " , $ matches );
734
734
};
735
735
736
736
function bug11490 (string $ expression ): void {
@@ -762,13 +762,13 @@ function bug11604 (string $string): void {
762
762
return ;
763
763
}
764
764
765
- assertType ("array {0: non-empty-string, 1?: ''|'XX', 2?: 'YY'} " , $ matches );
765
+ assertType ("list {0: non-empty-string, 1?: ''|'XX', 2?: 'YY'} " , $ matches );
766
766
// could be array{string, '', 'YY'}|array{string, 'XX'}|array{string}
767
767
}
768
768
769
769
function bug11604b (string $ string ): void {
770
770
if (preg_match ('/(XX)|(YY)?(ZZ)/ ' , $ string , $ matches )) {
771
- assertType ("array {0: non-empty-string, 1?: ''|'XX', 2?: ''|'YY', 3?: 'ZZ'} " , $ matches );
771
+ assertType ("list {0: non-empty-string, 1?: ''|'XX', 2?: ''|'YY', 3?: 'ZZ'} " , $ matches );
772
772
}
773
773
}
774
774
@@ -935,11 +935,11 @@ function bugEmptySubexpression (string $string): void {
935
935
}
936
936
937
937
if (preg_match ('~((a)||(b))~ ' , $ string , $ matches )) {
938
- assertType ("array {0: string, 1: ''|'a'|'b', 2?: ''|'a', 3?: 'b'} " , $ matches );
938
+ assertType ("list {0: string, 1: ''|'a'|'b', 2?: ''|'a', 3?: 'b'} " , $ matches );
939
939
}
940
940
941
941
if (preg_match ('~((a)|()|(b))~ ' , $ string , $ matches )) {
942
- assertType ("array {0: string, 1: ''|'a'|'b', 2?: ''|'a', 3?: '', 4?: 'b'} " , $ matches );
942
+ assertType ("list {0: string, 1: ''|'a'|'b', 2?: ''|'a', 3?: '', 4?: 'b'} " , $ matches );
943
943
}
944
944
}
945
945
@@ -1010,3 +1010,8 @@ function bug12749f(string $str): void
1010
1010
assertType ('array{non-empty-string} ' , $ match ); // could be numeric-string
1011
1011
}
1012
1012
}
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