mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
[PR #1275] [WIP] Nullable embedded objects. #9331
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/1275
State: closed
Merged: No
The idea was to have a simple (and clean) way to override the nullable property of embedded objects, so I've
added the
nullableattribute on the@Embeddedannotation and it have 3 possible values:FALSE: All attributes of the embeddable class will be marked as non-nullable.There's a lot of things to be improved (mostly on UnitOfWork), but it's fully working with basic tests as you can see on ValueObjectsTest::testCRUDOfNullableEmbedded() case.
I would appreciate a lot your opinions!