Neos\Neos\Domain\EventListener\AccountPostEventListener::postUpdate PHP Method

postUpdate() public method

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