public function postFlush(PostFlushEventArgs $event)
 {
     foreach ($this->entities as $entity) {
         foreach ($entity->popEvents() as $event) {
             $event->setSubject($entity);
             $this->dispatcher->dispatch($event->getName(), $event);
         }
     }
 }