From f2b21952345da17e3668059a802ce5d57de4e429 Mon Sep 17 00:00:00 2001 From: Mohamed Ashraf Date: Thu, 7 Mar 2024 15:55:28 +0400 Subject: [PATCH] Fix code styles --- src/Exceptions/TranslationsUIExceptionHandler.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Exceptions/TranslationsUIExceptionHandler.php b/src/Exceptions/TranslationsUIExceptionHandler.php index 0d29d2d..78199a2 100644 --- a/src/Exceptions/TranslationsUIExceptionHandler.php +++ b/src/Exceptions/TranslationsUIExceptionHandler.php @@ -2,8 +2,8 @@ namespace Outhebox\TranslationsUI\Exceptions; -use Illuminate\Foundation\Exceptions\Handler as BaseHandler; use App\Exceptions\Handler; +use Illuminate\Foundation\Exceptions\Handler as BaseHandler; use Illuminate\Http\JsonResponse; use Illuminate\Http\Request; use Illuminate\Http\Response; @@ -18,7 +18,8 @@ class ExtendedHandler extends Handler // Extend the custom handler } } else { - class ExtendedHandler extends BaseHandler { + class ExtendedHandler extends BaseHandler + { // Extend the default handler } }