Skip to content

Commit 079610b

Browse files
committed
fix cs
1 parent 78b9601 commit 079610b

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
@@ -378,11 +378,10 @@ public function setExistingOffsetValueType(Type $offsetType, Type $valueType): T
378378
);
379379
}
380380

381-
382381
return TypeCombinator::intersect(
383382
new self(
384383
$this->keyType,
385-
TypeCombinator::union($this->itemType, $valueType)
384+
TypeCombinator::union($this->itemType, $valueType),
386385
),
387386
new NonEmptyArrayType(),
388387
);

0 commit comments

Comments
 (0)