Passed
Push — master ( 14ba86...1ea504 )
by Faiq
04:32
created
app/Http/Middleware/RedirectIfAuthenticated.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
                 break;
31 31
             default:
32 32
                 if (Auth::guard($guard)->check()) {
33
-                     return redirect()->route('home');
33
+                        return redirect()->route('home');
34 34
                 }
35 35
         }
36 36
 
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/DoctorLoginController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     private function sendFailedLoginResponse(Request $request)
60 60
     {
61 61
         throw ValidationException::withMessages([
62
-           'email' => [trans('auth.failed')],
62
+            'email' => [trans('auth.failed')],
63 63
         ]);
64 64
     }
65 65
 }
Please login to merge, or discard this patch.
app/Providers/RouteServiceProvider.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
     protected function mapWebRoutes()
53 53
     {
54 54
         Route::middleware('web')
55
-             ->namespace($this->namespace)
56
-             ->group(base_path('routes/web.php'));
55
+                ->namespace($this->namespace)
56
+                ->group(base_path('routes/web.php'));
57 57
     }
58 58
 
59 59
     /**
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
     protected function mapApiRoutes()
67 67
     {
68 68
         Route::prefix('api')
69
-             ->middleware('api')
70
-             ->namespace($this->namespace)
71
-             ->group(base_path('routes/api.php'));
69
+                ->middleware('api')
70
+                ->namespace($this->namespace)
71
+                ->group(base_path('routes/api.php'));
72 72
     }
73 73
 }
Please login to merge, or discard this patch.