Browse Source

code formatting

Taylor Otwell 7 years ago
parent
commit
02274da8fd
1 changed files with 2 additions and 1 deletions
  1. 2 1
      app/Http/Middleware/Authenticate.php

+ 2 - 1
app/Http/Middleware/Authenticate.php

@@ -20,7 +20,8 @@ class Authenticate
         if (Auth::guard($guard)->guest()) {
             if ($request->ajax() || $request->wantsJson()) {
                 return response('Unauthorized.', 401);
-            } 
+            }
+
             return redirect()->guest('login');
         }