Invoke parent handler before sending to Slack
This commit is contained in:
parent
0001d5cd66
commit
c66eaaa97b
1 changed files with 2 additions and 2 deletions
|
@ -43,6 +43,8 @@ class Handler extends ExceptionHandler
|
|||
*/
|
||||
public function report(Exception $exception)
|
||||
{
|
||||
parent::report($exception);
|
||||
|
||||
$guzzle = new \GuzzleHttp\Client([
|
||||
'headers' => [
|
||||
'Content-Type' => 'application/json',
|
||||
|
@ -68,8 +70,6 @@ class Handler extends ExceptionHandler
|
|||
]),
|
||||
]
|
||||
);
|
||||
|
||||
parent::report($exception);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue