Test Setup Failed
Push — master ( 09af27...f99a5f )
by Arthur
13:43
created
config/ide-helper.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -173,8 +173,8 @@
 block discarded – undo
173 173
     | Cast the given "real type" to the given "type".
174 174
     |
175 175
     */
176
-   'type_overrides' => [
176
+    'type_overrides' => [
177 177
         'integer' => 'int',
178 178
         'boolean' => 'bool',
179
-   ],
179
+    ],
180 180
 ];
Please login to merge, or discard this patch.
src/Foundation/Providers/RouteServiceProvider.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
     protected function mapWebRoutes()
51 51
     {
52 52
         Route::middleware('web')
53
-             ->namespace($this->namespace)
54
-             ->group(base_path('routes/web.php'));
53
+                ->namespace($this->namespace)
54
+                ->group(base_path('routes/web.php'));
55 55
     }
56 56
 
57 57
     /**
@@ -64,8 +64,8 @@  discard block
 block discarded – undo
64 64
     protected function mapApiRoutes()
65 65
     {
66 66
         Route::prefix('api')
67
-             ->middleware('api')
68
-             ->namespace($this->namespace)
69
-             ->group(base_path('routes/api.php'));
67
+                ->middleware('api')
68
+                ->namespace($this->namespace)
69
+                ->group(base_path('routes/api.php'));
70 70
     }
71 71
 }
Please login to merge, or discard this patch.