예제 #1
0
 /**
  * @param Notifier $notifier
  */
 public function registerExceptionHandler(Notifier $notifier)
 {
     set_exception_handler(function ($exception) use($notifier) {
         $notifier->reportException($exception);
     });
 }