/**
  * create Send a notification to all notifier available
  * @param IncidentEvent $event
  * @return
  */
 public function create(IncidentEvent $event)
 {
     $incident = $event->getIncident();
     $this->notification->sendIncidentNotification($incident);
 }