|
28 | 28 | use PHPStan\Type\Accessory\AccessoryType;
|
29 | 29 | use PHPStan\Type\Accessory\NonEmptyArrayType;
|
30 | 30 | use PHPStan\Type\Constant\ConstantIntegerType;
|
| 31 | +use PHPStan\Type\Constant\ConstantStringType; |
31 | 32 | use PHPStan\Type\Generic\TemplateType;
|
32 | 33 | use PHPStan\Type\Generic\TemplateTypeMap;
|
33 | 34 | use PHPStan\Type\Generic\TemplateTypeVariance;
|
@@ -722,6 +723,30 @@ public function getOffsetValueType(Type $offsetType): Type
|
722 | 723 |
|
723 | 724 | public function setOffsetValueType(?Type $offsetType, Type $valueType, bool $unionValues = true): Type
|
724 | 725 | {
|
| 726 | + if ($this->isOversizedArray()->yes()) { |
| 727 | + return $this->intersectTypes(static function (Type $type) use ($offsetType, $valueType, $unionValues): Type { |
| 728 | + // avoid new HasOffsetValueType being intersected with oversized array |
| 729 | + if (!$type instanceof ArrayType) { |
| 730 | + return $type->setOffsetValueType($offsetType, $valueType, $unionValues); |
| 731 | + } |
| 732 | + |
| 733 | + if (!$offsetType instanceof ConstantStringType && !$offsetType instanceof ConstantIntegerType) { |
| 734 | + return $type->setOffsetValueType($offsetType, $valueType, $unionValues); |
| 735 | + } |
| 736 | + |
| 737 | + if (!$offsetType->isSuperTypeOf($type->getKeyType())->yes()) { |
| 738 | + return $type->setOffsetValueType($offsetType, $valueType, $unionValues); |
| 739 | + } |
| 740 | + |
| 741 | + return TypeCombinator::intersect( |
| 742 | + new ArrayType( |
| 743 | + TypeCombinator::union($type->getKeyType(), $offsetType), |
| 744 | + TypeCombinator::union($type->getItemType(), $valueType), |
| 745 | + ), |
| 746 | + new NonEmptyArrayType(), |
| 747 | + ); |
| 748 | + }); |
| 749 | + } |
725 | 750 | return $this->intersectTypes(static fn (Type $type): Type => $type->setOffsetValueType($offsetType, $valueType, $unionValues));
|
726 | 751 | }
|
727 | 752 |
|
|
0 commit comments