twigParams = func_get_args(); } /** * @return array */ public function getSubscribedEvents() { return array( DoctrineEvents::POST_LOAD, ); } /** * @param LifecycleEventArgs $args */ public function postLoad(LifecycleEventArgs $args) { $entity = $args->getEntity(); if ($entity instanceof Action) { $entity->setTwigParams($this->twigParams); } } }