mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
[PR #11408] Fix fromMappingArray definition #13004
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/doctrine/orm/pull/11408
State: closed
Merged: Yes
Hi,
Kinda similar to https://github.com/doctrine/orm/pull/11226 @greg0ire @derrabus
I got a psalm error because
FieldMapping::fromMappingArraydoes not acceptnullablekey.This was because the array param was missing lot of keys.
I tried to fix the phpdoc of every fromMappingArray keys by looking at all the property of the class and allow them as array keys in the
$mappingArrayparameter.Thanks.