From 524343988f669515163a97244f2bfefbc9f11130 Mon Sep 17 00:00:00 2001 From: Troy Siedsma Date: Thu, 4 Mar 2021 21:09:18 -0600 Subject: [PATCH] Update code for Laravel 7+ due to symphony changes --- src/LithiumDev/ExceptionMailer/ExceptionHandler.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/LithiumDev/ExceptionMailer/ExceptionHandler.php b/src/LithiumDev/ExceptionMailer/ExceptionHandler.php index 697cd13..a8e7117 100644 --- a/src/LithiumDev/ExceptionMailer/ExceptionHandler.php +++ b/src/LithiumDev/ExceptionMailer/ExceptionHandler.php @@ -2,18 +2,18 @@ namespace LithiumDev\ExceptionMailer; -use Exception; +use Throwable; use App\Exceptions\Handler; class ExceptionHandler extends Handler { /** * - * @param Exception $e + * @param Throwable $e * * @return type */ - public function report(Exception $e) + public function report(Throwable $e) { parent::report($e);