Invoke parent handler before sending to Slack

This commit is contained in:
Jonny Barnes 2020-01-26 12:21:15 +00:00
parent 0001d5cd66
commit c66eaaa97b

View file

@ -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);
}
/**