Skip to content

Commit 052f6b1

Browse files
committed
Fix internal error
1 parent 5814c7e commit 052f6b1

File tree

3 files changed

+46
-2
lines changed

3 files changed

+46
-2
lines changed

src/Type/Php/RegexArrayShapeMatcher.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ private function matchRegex(string $regex, ?int $flags, TrinaryLogic $wasMatched
157157
if (!$this->containsUnmatchedAsNull($flags, $matchesAll)) {
158158
// positive match has a subject but not any capturing group
159159
$combiType = TypeCombinator::union(
160-
new ConstantArrayType([new ConstantIntegerType(0)], [$this->createSubjectValueType($flags, $matchesAll)], [0], [], true),
160+
new ConstantArrayType([new ConstantIntegerType(0)], [$this->createSubjectValueType($flags, $matchesAll)], [1], [], true),
161161
$combiType,
162162
);
163163
}
@@ -222,7 +222,7 @@ private function matchRegex(string $regex, ?int $flags, TrinaryLogic $wasMatched
222222
)
223223
) {
224224
// positive match has a subject but not any capturing group
225-
$combiTypes[] = new ConstantArrayType([new ConstantIntegerType(0)], [$this->createSubjectValueType($flags, $matchesAll)], [0], [], true);
225+
$combiTypes[] = new ConstantArrayType([new ConstantIntegerType(0)], [$this->createSubjectValueType($flags, $matchesAll)], [1], [], true);
226226
}
227227

228228
return TypeCombinator::union(...$combiTypes);

tests/PHPStan/Analyser/AnalyserIntegrationTest.php

+6
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,12 @@ public function testBug3309(): void
312312
$this->assertNoErrors($errors);
313313
}
314314

315+
public function testBug11649(): void
316+
{
317+
$errors = $this->runAnalyse(__DIR__ . '/data/bug-11649.php');
318+
$this->assertNoErrors($errors);
319+
}
320+
315321
public function testBug6872(): void
316322
{
317323
if (PHP_VERSION_ID < 80000) {
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?php
2+
3+
namespace Bug11649;
4+
5+
use DateTime;
6+
7+
class Date
8+
{
9+
/**
10+
* Characters used in formats accepted by date()
11+
*/
12+
protected const DATE_FORMAT_CHARACTERS = 'AaBcDdeFgGHhIijlLMmnNoOpPrsSTtUuvWwyYzZ';
13+
14+
/**
15+
* Regex used to parse formats accepted by date()
16+
*/
17+
protected const DATE_FORMAT_REGEX = '/(?P<escaped>(?:\\\[A-Za-z])+)|[' . self::DATE_FORMAT_CHARACTERS . ']|(?P<invalid>[A-Za-z])/';
18+
19+
/**
20+
* Formats a DateTime object using the current translation for weekdays and months
21+
* @param mixed $translation
22+
*/
23+
public static function formatDateTime(DateTime $dateTime, string $format, ?string $language , $translation): ?string
24+
{
25+
return preg_replace_callback(
26+
self::DATE_FORMAT_REGEX,
27+
fn(array $matches): string => match ($matches[0]) {
28+
'M' => $translation->getStrings('date.months.short')[$dateTime->format('n') - 1],
29+
'F' => $translation->getStrings('date.months.long')[$dateTime->format('n') - 1],
30+
'D' => $translation->getStrings('date.weekdays.short')[(int) $dateTime->format('w')],
31+
'l' => $translation->getStrings('date.weekdays.long')[(int) $dateTime->format('w')],
32+
'r' => static::formatDateTime($dateTime, DateTime::RFC2822, null, $translation),
33+
default => $dateTime->format($matches[1] ?? $matches[0])
34+
},
35+
$format
36+
);
37+
}
38+
}

0 commit comments

Comments
 (0)