Example #1
0
 public function handle(Event $ev)
 {
     if (!$this->canHandle($ev->getPath())) {
         return;
     }
     $this->preHandle($ev);
     $this->performHandling($ev);
     $this->postHandle($ev);
 }