Neos\Neos\Domain\EventListener\AccountPostEventListener::postUpdate PHP Méthode

postUpdate() public méthode

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