Backend for songs.zachdecook.com
Diffstat (limited to 'laravel/app/Exceptions/Handler.php')
| -rw-r--r-- | laravel/app/Exceptions/Handler.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/laravel/app/Exceptions/Handler.php b/laravel/app/Exceptions/Handler.php index 043cad6..05aeb49 100644 --- a/laravel/app/Exceptions/Handler.php +++ b/laravel/app/Exceptions/Handler.php @@ -2,7 +2,7 @@ namespace App\Exceptions; -use Exception; +use Throwable; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; class Handler extends ExceptionHandler @@ -32,7 +32,7 @@ class Handler extends ExceptionHandler * @param \Exception $exception * @return void */ - public function report(Exception $exception) + public function report(Throwable $exception) { parent::report($exception); } @@ -44,7 +44,7 @@ class Handler extends ExceptionHandler * @param \Exception $exception * @return \Illuminate\Http\Response */ - public function render($request, Exception $exception) + public function render($request, Throwable $exception) { return parent::render($request, $exception); } |