mirror of
https://github.com/flarum/framework.git
synced 2025-01-31 22:48:29 +08:00
Make queue error handler compatible with Laravel 6 (#2270)
This commit is contained in:
parent
4f21e22236
commit
749052783f
|
@ -59,4 +59,15 @@ class ExceptionHandler implements ExceptionHandling
|
||||||
{
|
{
|
||||||
// TODO: Implement renderForConsole() method.
|
// TODO: Implement renderForConsole() method.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if the exception should be reported.
|
||||||
|
*
|
||||||
|
* @param \Exception $e
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function shouldReport(Exception $e)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user