actives = array($profile); } public function enter(Twig_Profiler_Profile $profile) { $this->actives[0]->addProfile($profile); array_unshift($this->actives, $profile); } public function leave(Twig_Profiler_Profile $profile) { $profile->leave(); array_shift($this->actives); if (1 === count($this->actives)) { $this->actives[0]->leave(); } } /** * {@inheritdoc} */ public function getNodeVisitors() { return array(new Twig_Profiler_NodeVisitor_Profiler($this->getName())); } /** * {@inheritdoc} */ public function getName() { return 'profiler'; } }