Skip to content

Commit 1cba4ba

Browse files
staabmondrejmirtes
authored andcommitted
ArrayShapeMatcher - Fix alternations containing a $-only case
1 parent f5e2e32 commit 1cba4ba

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

src/Type/Regex/RegexGroupParser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ private function walkGroupAst(
460460
$isNumeric = TrinaryLogic::createYes();
461461
}
462462

463-
if (!$inOptionalQuantification) {
463+
if (!$inOptionalQuantification && $literalValue !== '') {
464464
$isNonEmpty = TrinaryLogic::createYes();
465465
}
466466
}

tests/PHPStan/Analyser/nsrt/preg_match_shapes.php

+7
Original file line numberDiff line numberDiff line change
@@ -746,3 +746,10 @@ function bug11490b (string $expression): void {
746746
}
747747
}
748748

749+
function bug11622 (string $expression): void {
750+
$matches = [];
751+
752+
if (preg_match('/^abc(def|$)/', $expression, $matches) === 1) {
753+
assertType("array{string, string}", $matches);
754+
}
755+
}

0 commit comments

Comments
 (0)