You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the postflush event is dispatched before the unitofwork is cleanup. We tried to add some listener to it but got into some problems because the UnitOfWork was not yet cleanup. The code can be found here:
Currently the postflush event is dispatched before the unitofwork is cleanup. We tried to add some listener to it but got into some problems because the
UnitOfWork
was not yet cleanup. The code can be found here:orm/lib/Doctrine/ORM/UnitOfWork.php
Lines 378 to 380 in 3a194ad
orm/lib/Doctrine/ORM/UnitOfWork.php
Lines 472 to 474 in 3a194ad
For our case it would be great if the
UnitOfWork
cleanup is done before dispatching the post events e.g.:I understand that this could be a bc break so an alternative would be add a new
postFlushCleanup
event which we could listen to it. What do you think?The text was updated successfully, but these errors were encountered: