Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Nov 20, 2024
1 parent 2c548d0 commit c3aa3a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rules/TypeDeclaration/TypeNormalizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ public function normalizeArrayTypeAndArrayNever(Type $type): Type
assert($traversedType instanceof ConstantArrayType);

// not sure why, but with direct new node everything gets nulled to MixedType
$this->privatesAccessor->setPrivateProperty($traversedType, 'keyType', new MixedType());
$this->privatesAccessor->setPrivateProperty($traversedType, 'keyTypes', [new MixedType()]);

$this->privatesAccessor->setPrivateProperty($traversedType, 'itemType', new MixedType());
$this->privatesAccessor->setPrivateProperty($traversedType, 'valueTypes', [new MixedType()]);

return $traversedType;
}
Expand Down

0 comments on commit c3aa3a9

Please sign in to comment.