Passed
Branch master (fe3a38)
by Jianhua
04:56
created
app/Providers/RouteServiceProvider.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -84,8 +84,8 @@  discard block
 block discarded – undo
84 84
     protected function mapWebRoutes()
85 85
     {
86 86
         Route::middleware('web')
87
-             ->namespace($this->namespace . '\Front')
88
-             ->group(base_path('routes/web.php'));
87
+                ->namespace($this->namespace . '\Front')
88
+                ->group(base_path('routes/web.php'));
89 89
     }
90 90
 
91 91
     /**
@@ -98,8 +98,8 @@  discard block
 block discarded – undo
98 98
     protected function mapApiRoutes()
99 99
     {
100 100
         Route::prefix('api')
101
-             ->middleware('api')
102
-             ->namespace($this->namespace)
103
-             ->group(base_path('routes/api.php'));
101
+                ->middleware('api')
102
+                ->namespace($this->namespace)
103
+                ->group(base_path('routes/api.php'));
104 104
     }
105 105
 }
Please login to merge, or discard this patch.
app/functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 function parseEntityFieldParams($params)
9 9
 {
10 10
     $items = explode("\n", $params);
11
-    return array_map(function ($item) {
11
+    return array_map(function($item) {
12 12
         return explode("=", $item);
13 13
     }, $items);
14 14
 }
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 
32 32
 function initTire()
33 33
 {
34
-    return Cache::rememberForever('sensitive_words', function () {
34
+    return Cache::rememberForever('sensitive_words', function() {
35 35
         $tires = [];
36 36
 
37 37
         foreach (['noun', 'verb', 'exclusive'] as $v) {
Please login to merge, or discard this patch.