Skip to content

Commit 3afe030

Browse files
authored
Add shouldReport to ExceptionHandler
`shouldReport()` was added to the `ExceptionHandler` interface in Laravel 5.8. When it is not present in this class, it throws an error. See this PR on Laravel Framework: laravel/framework#26193
1 parent af42d33 commit 3afe030

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/Adapters/Laravel/ExceptionHandler.php

+8
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,14 @@ public function report(Exception $e)
5959
{
6060
$this->appExceptionHandler->report($e);
6161
}
62+
63+
/**
64+
* {@inheritdoc}
65+
*/
66+
public function shouldReport(Exception $e)
67+
{
68+
$this->appExceptionHandler->shouldReport($e);
69+
}
6270

6371
/**
6472
* {@inheritdoc}

0 commit comments

Comments
 (0)