doctrine-laminas-hydrator
doctrine-laminas-hydrator copied to clipboard
Doctrine hydrators for Laminas applications
Hello! In trying to hydrate collection 'changes' (e.g., an update operation) - I've encountered an issue where adding and removing an element from this collection (via Fieldset) in a single...
I want to use this library without laminas forms. When I try to extract an entity with a many-to-many relationship, I receive the PersistentCollection in the result array. Association extraction...
https://github.com/doctrine/doctrine-laminas-hydrator/blame/81ee8121f42dcc0b6f39e08dce56b10baf6fb95f/src/DoctrineObject.php#L355 ``` if ($metadata->hasAssociation($field)) { $target = $metadata->getAssociationTargetClass($field); assert($target !== null); ``` Above assert code is failing for mongoDB, when we are using EmbedMany argument without target document locally. According...