Skip to content

Commit 6a67939

Browse files
committed
fix cs
1 parent 2993e19 commit 6a67939

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Type/ArrayType.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,11 +373,10 @@ public function setExistingOffsetValueType(Type $offsetType, Type $valueType): T
373373
);
374374
}
375375

376-
377376
return TypeCombinator::intersect(
378377
new self(
379378
$this->keyType,
380-
TypeCombinator::union($this->itemType, $valueType)
379+
TypeCombinator::union($this->itemType, $valueType),
381380
),
382381
new NonEmptyArrayType(),
383382
);

0 commit comments

Comments
 (0)