Skip to content

Commit

Permalink
chore: fixes static analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Sep 19, 2023
1 parent aeeea4c commit a366aa2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Adapters/Laravel/ExceptionHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/**
Expand All @@ -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;
}
Expand All @@ -116,7 +116,7 @@ public function renderable(callable $renderUsing)
*/
public function dontReportDuplicates()
{
$this->appExceptionHandler->dontReportDuplicates(); // @phpstan-ignore-line
$this->appExceptionHandler->dontReportDuplicates();

return $this;
}
Expand Down

0 comments on commit a366aa2

Please sign in to comment.