Newscoop\Doctrine\EventDispatcherProxy::postUpdate PHP Метод

postUpdate() публичный Метод

Dispatch entity.update on postUpdate.
public postUpdate ( Doctrine\ORM\Event\LifecycleEventArgs $args ) : void
$args Doctrine\ORM\Event\LifecycleEventArgs
Результат void
    public function postUpdate(LifecycleEventArgs $args)
    {
        foreach ($this->events as $eventName => $event) {
            $this->dispatcher->dispatch($eventName, $event);
        }
    }