Networking\InitCmsBundle\EventListener\CacheCleaner::postRemove PHP 메소드

postRemove() 공개 메소드

public postRemove ( Doctrine\ORM\Event\LifecycleEventArgs $args )
$args Doctrine\ORM\Event\LifecycleEventArgs
    public function postRemove(LifecycleEventArgs $args)
    {
        $entity = $args->getEntity();
        if ($entity instanceof MenuItem) {
            $this->cleanCache();
        }
    }