From 5ec7a4c14ba98588ef59815b88cc083d158b0091 Mon Sep 17 00:00:00 2001 From: tnylea Date: Tue, 28 May 2024 20:27:54 +0000 Subject: [PATCH] Fixes coding style --- src/Http/Middleware/ViewAuthSetup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http/Middleware/ViewAuthSetup.php b/src/Http/Middleware/ViewAuthSetup.php index 77ea3b7..820fb39 100644 --- a/src/Http/Middleware/ViewAuthSetup.php +++ b/src/Http/Middleware/ViewAuthSetup.php @@ -9,7 +9,7 @@ class ViewAuthSetup { public function handle($request, Closure $next) { - if(!app()->isLocal() && !Gate::allows('viewAuthSetup')){ + if (! app()->isLocal() && ! Gate::allows('viewAuthSetup')) { return redirect('auth/login'); }