diff --git a/src/Adapters/Laravel/ExceptionHandler.php b/src/Adapters/Laravel/ExceptionHandler.php index 6944ec8..273e9ba 100644 --- a/src/Adapters/Laravel/ExceptionHandler.php +++ b/src/Adapters/Laravel/ExceptionHandler.php @@ -93,7 +93,7 @@ public function shouldReport(Throwable $e) */ public function reportable(callable $reportUsing) { - return $this->appExceptionHandler->reportable($reportUsing); // @phpstan-ignore-line + return $this->appExceptionHandler->reportable($reportUsing); } /** @@ -104,7 +104,7 @@ public function reportable(callable $reportUsing) */ public function renderable(callable $renderUsing) { - $this->appExceptionHandler->renderable($renderUsing); // @phpstan-ignore-line + $this->appExceptionHandler->renderable($renderUsing); return $this; } @@ -116,7 +116,7 @@ public function renderable(callable $renderUsing) */ public function dontReportDuplicates() { - $this->appExceptionHandler->dontReportDuplicates(); // @phpstan-ignore-line + $this->appExceptionHandler->dontReportDuplicates(); return $this; }