Skip to content

Commit 5964211

Browse files
committed
Consider int range offset in truthy context
1 parent 22ef97b commit 5964211

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/Analyser/TypeSpecifier.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,9 @@ public function specifyTypesInCondition(
285285
$sizeType = IntegerRangeType::createAllGreaterThan($leftType->getValue());
286286
}
287287
} elseif ($leftType instanceof IntegerRangeType) {
288-
$sizeType = $leftType;
288+
$sizeType = $context->true()
289+
? IntegerRangeType::fromInterval(($leftType->getMin() ?? 0) + $offset, $leftType->getMax())
290+
: $leftType;
289291
}
290292

291293
$specifiedTypes = $this->specifyTypesForCountFuncCall($expr->right, $argType, $sizeType, $context, $scope, $rootExpr);

tests/PHPStan/Analyser/nsrt/bug-4700.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function(array $array, int $count): void {
4141
if (isset($array['e'])) $a[] = $array['e'];
4242
if (count($a) > $count) {
4343
assertType('int<2, 5>', count($a));
44-
assertType('array{0: mixed~null, 1?: mixed~null, 2?: mixed~null, 3?: mixed~null, 4?: mixed~null}', $a);
44+
assertType('array{0: mixed~null, 1: mixed~null, 2?: mixed~null, 3?: mixed~null, 4?: mixed~null}&list', $a);
4545
} else {
4646
assertType('0', count($a));
4747
assertType('array{}', $a);

0 commit comments

Comments
 (0)