Skip to content

Commit

Permalink
Merge branch 'interfaceImprovements' of github.com:thedevdojo/auth in…
Browse files Browse the repository at this point in the history
…to interfaceImprovements
  • Loading branch information
tnylea committed May 28, 2024
2 parents e18f1de + 5ec7a4c commit 3d3718b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Middleware/ViewAuthSetup.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}

Expand Down

0 comments on commit 3d3718b

Please sign in to comment.