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();
        }
    }