chore: code styling via pint

This commit is contained in:
idevakk
2025-11-14 01:51:35 -08:00
parent 3892c48ef2
commit 90ab79b3a2
121 changed files with 1003 additions and 892 deletions

View File

@@ -12,7 +12,7 @@ class CheckUserBanned
/**
* Handle an incoming request.
*
* @param Closure(Request):Response $next
* @param Closure(Request):Response $next
*/
public function handle(Request $request, Closure $next): Response
{
@@ -20,6 +20,7 @@ class CheckUserBanned
// Return the banned page instead of proceeding with the request
return response()->view('banned');
}
return $next($request);
}
}