Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit adff669

Browse files
committedMay 8, 2025
fix cs
1 parent 8f86693 commit adff669

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)
Please sign in to comment.