/**
  * @param string $event
  * @param null $eventArgs
  * @return \Enlight_Event_EventArgs|null
  * @throws \Enlight_Event_Exception
  */
 public function notify($event, $eventArgs = null)
 {
     if (!strstr($event, 'Profiler_')) {
         $this->calledEvents[] = ['type' => 'notify', 'name' => $event, 'args' => Debug::dump($eventArgs, 2, true, false)];
     }
     return parent::notify($event, $eventArgs);
 }