Skip to content

Commit 8092d6b

Browse files
committed
Consider int range offset in truthy context
1 parent 638c2ed commit 8092d6b

File tree

2 files changed

+9
-18
lines changed

2 files changed

+9
-18
lines changed

src/Analyser/TypeSpecifier.php

+6-15
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ public function specifyTypesInCondition(
277277
$sizeType = IntegerRangeType::createAllGreaterThan($leftType->getValue());
278278
}
279279
} elseif ($leftType instanceof IntegerRangeType) {
280-
$sizeType = $leftType;
280+
$sizeType = $leftType->shift($offset);
281281
}
282282

283283
$specifiedTypes = $this->specifyTypesForCountFuncCall($expr->right, $argType, $sizeType, $context, $scope, $expr);
@@ -984,23 +984,14 @@ private function specifyTypesForCountFuncCall(FuncCall $countFuncCall, Type $typ
984984

985985
$arraySize = $type->getArraySize();
986986
$isSize = $sizeType->isSuperTypeOf($arraySize);
987-
if ($context->truthy()) {
988-
if ($isSize->no()) {
989-
return new NeverType();
990-
}
991-
992-
$constArray = $this->turnListIntoConstantArray($type, $sizeType);
993-
if ($constArray !== null) {
994-
$type = $constArray;
995-
}
987+
if ($context->truthy() && $isSize->no()) {
988+
return new NeverType();
996989
}
997-
if ($context->falsey()) {
998-
if (!$isSize->yes()) {
999-
return new NeverType();
1000-
}
990+
if ($context->falsey() && !$isSize->yes()) {
991+
return new NeverType();
1001992
}
1002993

1003-
return $type;
994+
return $this->turnListIntoConstantArray($type, $sizeType) ?? $type;
1004995
});
1005996

1006997
return $this->create($countFuncCall->getArgs()[0]->value, $resultType, $context, $scope)->setRootExpr($rootExpr);

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ 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('list{0: mixed~null, 1: mixed~null, 2?: mixed~null, 3?: mixed~null, 4?: mixed~null}', $a);
4545
} else {
46-
assertType('0', count($a));
47-
assertType('array{}', $a);
46+
assertType('int<0, 5>', count($a)); // Could be int<0, 1>
47+
assertType('array{}|array{0: mixed~null, 1?: mixed~null, 2?: mixed~null, 3?: mixed~null, 4?: mixed~null}', $a); // Could be array{}|array{0: mixed~null}
4848
}
4949
};

0 commit comments

Comments
 (0)