Skip to content

Commit c54b257

Browse files
committed
Fix build
1 parent 34fb83d commit c54b257

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

phpstan-baseline.neon

+5
Original file line numberDiff line numberDiff line change
@@ -635,6 +635,11 @@ parameters:
635635
count: 2
636636
path: src/Rules/RuleLevelHelper.php
637637

638+
-
639+
message: "#^Doing instanceof PHPStan\\\\Type\\\\ObjectType is error\\-prone and deprecated\\. Use Type\\:\\:isObject\\(\\) or Type\\:\\:getObjectClassNames\\(\\) instead\\.$#"
640+
count: 2
641+
path: src/Rules/RuleLevelHelper.php
642+
638643
-
639644
message: "#^Doing instanceof PHPStan\\\\Type\\\\ObjectWithoutClassType is error\\-prone and deprecated\\. Use Type\\:\\:isObject\\(\\) instead\\.$#"
640645
count: 1

src/Type/TypeCombinator.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -813,7 +813,7 @@ private static function optimizeConstantArrays(array $types): array
813813

814814
$innerValueType = $type->getValueTypes()[$i];
815815
$generalizedValueType = TypeTraverser::map($innerValueType, static function (Type $type) use ($traverse): Type {
816-
if ($type instanceof ArrayType || $type instanceof ConstantArrayType) {
816+
if ($type instanceof ArrayType) {
817817
return TypeCombinator::intersect($type, new OversizedArrayType());
818818
}
819819

@@ -853,8 +853,8 @@ private static function optimizeConstantArrays(array $types): array
853853
$eachIsList = false;
854854
}
855855

856-
$keyType = self::union(...array_values($keyTypes));
857-
$valueType = self::union(...array_values($valueTypes));
856+
$keyType = self::union(...$keyTypes);
857+
$valueType = self::union(...$valueTypes);
858858

859859
$arrayType = new ArrayType($keyType, $valueType);
860860
if ($eachIsList) {

0 commit comments

Comments
 (0)