Example #1
0
 public function handle(Event $event)
 {
     $timestamp = $event->getTimestamp();
     if (empty($timestamp)) {
         $event->setTimestamp(time());
     }
     foreach ($this->notifiers as $notifier) {
         $notifier->handleEvent($event);
     }
 }