Make queue error handler compatible with Laravel 6 (#2270)

This commit is contained in:
Franz Liedke 2020-08-28 04:41:36 +02:00 committed by GitHub
parent ebbef75cfb
commit f939d164b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,4 +59,15 @@ class ExceptionHandler implements ExceptionHandling
{
// TODO: Implement renderForConsole() method.
}
/**
* Determine if the exception should be reported.
*
* @param \Exception $e
* @return bool
*/
public function shouldReport(Exception $e)
{
return true;
}
}