/**
  * Create a new exception handler instance.
  *
  * @param LoggerInterface $log
  */
 public function __construct(LoggerInterface $log)
 {
     parent::__construct($log);
     $this->mergeConfiguredDontReportExceptions();
 }
Example #2
0
 public function __construct(LoggerInterface $log, CsiService $csiService)
 {
     parent::__construct($log);
     $this->csiService = $csiService;
 }