diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php index 75f59b2..bfd69dd 100644 --- a/app/Http/Middleware/RedirectIfAuthenticated.php +++ b/app/Http/Middleware/RedirectIfAuthenticated.php @@ -20,7 +20,7 @@ class RedirectIfAuthenticated * * @return Response|RedirectResponse */ - public function handle(Request $request, Closure $next, ...$guards) + public function handle(Request $request, Closure $next, ...$guards): Response|RedirectResponse { $guards = empty($guards) ? [null] : $guards;