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

postPersist() public méthode

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