Neos\Neos\Domain\EventListener\AccountPostEventListener::postUpdate PHP 메소드

postUpdate() 공개 메소드

public postUpdate ( Doctrine\ORM\Event\LifecycleEventArgs $eventArgs ) : void
$eventArgs Doctrine\ORM\Event\LifecycleEventArgs
리턴 void
    public function postUpdate(LifecycleEventArgs $eventArgs)
    {
        if ($eventArgs->getEntity() instanceof Account) {
            $this->flushConfigurationCache();
        }
    }