Commit 614edf79 by Graham Campbell

Fixed the exception handler

parent 19e54f5e
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
namespace App\Exceptions; namespace App\Exceptions;
use Exception;
use Symfony\Component\HttpKernel\Exception\HttpException; use Symfony\Component\HttpKernel\Exception\HttpException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
...@@ -22,10 +21,10 @@ class Handler extends ExceptionHandler ...@@ -22,10 +21,10 @@ class Handler extends ExceptionHandler
* *
* This is a great spot to send exceptions to Sentry, Bugsnag, etc. * This is a great spot to send exceptions to Sentry, Bugsnag, etc.
* *
* @param \Exception $e * @param \Throwable $e
* @return void * @return void
*/ */
public function report(Exception $e) public function report($e)
{ {
return parent::report($e); return parent::report($e);
} }
...@@ -34,10 +33,10 @@ class Handler extends ExceptionHandler ...@@ -34,10 +33,10 @@ class Handler extends ExceptionHandler
* Render an exception into an HTTP response. * Render an exception into an HTTP response.
* *
* @param \Illuminate\Http\Request $request * @param \Illuminate\Http\Request $request
* @param \Exception $e * @param \Throwable $e
* @return \Illuminate\Http\Response * @return \Illuminate\Http\Response
*/ */
public function render($request, Exception $e) public function render($request, $e)
{ {
return parent::render($request, $e); return parent::render($request, $e);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment