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

postRemove() 공개 메소드

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