From 13b799196bc6957dd57b6b6d07ace32299a9f336 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Fri, 30 Oct 2015 18:54:41 +0000 Subject: [PATCH] Revert bad changes to the exception handler --- app/Exceptions/Handler.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 69a0403f..7db9e074 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -29,7 +29,7 @@ class Handler extends ExceptionHandler * * This is a great spot to send exceptions to Sentry, Bugsnag, etc. * - * @param \Throwable $e + * @param \Exception $e * @return void */ public function report(Exception $e) @@ -41,7 +41,7 @@ class Handler extends ExceptionHandler * Render an exception into an HTTP response. * * @param \Illuminate\Http\Request $request - * @param \Throwable $e + * @param \Exception $e * @return \Illuminate\Http\Response */ public function render($request, Exception $e)