diff --git a/src/Queue/ExceptionHandler.php b/src/Queue/ExceptionHandler.php index f3da5ffc5..d7cc9afd7 100644 --- a/src/Queue/ExceptionHandler.php +++ b/src/Queue/ExceptionHandler.php @@ -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; + } }