Ver Mensaje Individual
  #13 (permalink)  
Antiguo 14/11/2014, 14:43
Avatar de hhs
hhs
Colaborador
 
Fecha de Ingreso: junio-2013
Ubicación: México
Mensajes: 2.995
Antigüedad: 11 años, 4 meses
Puntos: 379
Respuesta: Eventos con SonataAdmin

Código PHP:
Ver original
  1. /**
  2. * Computes all the changes that have been done to entities and collections
  3. * since the last commit and stores these changes in the _entityChangeSet map
  4. * temporarily for access by the persisters, until the UoW commit is finished.
  5. *
  6. * @return void
  7. */
  8. public function computeChangeSets()
  9. {
  10. // Compute changes for INSERTed entities first. This must always happen.
  11. $this->computeScheduleInsertsChangeSets();
Así que si no estas agregando una nuvea entidad, no es necesario que hagas persist() en ese punto.
Mas detalles:https://github.com/doctrine/doctrine...UnitOfWork.php
__________________
Saludos
About me
Laraveles
A class should have only one reason to change.