From dadbaa6c0e86f32c424fe56b14babe79e33819c0 Mon Sep 17 00:00:00 2001 From: Frankie B Date: Sat, 29 Jul 2023 17:49:01 +0100 Subject: [PATCH] Update app/Http/Middleware/RedirectIfAuthenticated.php Co-authored-by: codacy-production[bot] <61871480+codacy-production[bot]@users.noreply.github.com> --- app/Http/Middleware/RedirectIfAuthenticated.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php index 19392fb..fdc707b 100644 --- a/app/Http/Middleware/RedirectIfAuthenticated.php +++ b/app/Http/Middleware/RedirectIfAuthenticated.php @@ -26,5 +26,5 @@ public function handle(Request $request, Closure $next, string ...$guards): Resp } return $next($request); - } //end handle() + } // End handle(). }