コード例 #1
0
 /**
  * Create a new exception handler instance.
  *
  * @param LoggerInterface $log
  */
 public function __construct(LoggerInterface $log)
 {
     parent::__construct($log);
     $this->mergeConfiguredDontReportExceptions();
 }
コード例 #2
0
ファイル: CsiExceptionHandler.php プロジェクト: ixudra/csi
 public function __construct(LoggerInterface $log, CsiService $csiService)
 {
     parent::__construct($log);
     $this->csiService = $csiService;
 }