Details
Description
This issue is created automatically through a Github pull request on behalf of jappie:
Url: https://github.com/doctrine/doctrine2/pull/484
Message:
While executing updates on an entity scheduled for update without a change-set, an "Undefined index" notice is raised.
This issue will occur when you manually call $em()->getUnitOfWork()->scheduleForUpdate() on an entity that hasn't changed. The entity will be included in UnitOfWork::$entityUpdates, but because there are no changes, its oid will not be included in UnitOfWork::$entityChangeSets.
I know I'm misusing scheduleForUpdate() a bit in this case, but the notice can easily be prevented with a !empty().
A related Github Pull-Request [GH-484] was closed
https://github.com/doctrine/doctrine2/pull/484