Completed
Pull Request — master (#2374)
by Limon
03:00
created
src/Controllers/PermissionController.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -86,8 +86,8 @@  discard block
 block discarded – undo
86 86
         $grid->slug(trans('admin.slug'));
87 87
         $grid->name(trans('admin.name'));
88 88
 
89
-        $grid->http_path(trans('admin.route'))->display(function ($path) {
90
-            return collect(explode("\r\n", $path))->map(function ($path) {
89
+        $grid->http_path(trans('admin.route'))->display(function($path) {
90
+            return collect(explode("\r\n", $path))->map(function($path) {
91 91
                 $method = $this->http_method ?: ['ANY'];
92 92
 
93 93
                 if (Str::contains($path, ':')) {
@@ -95,9 +95,9 @@  discard block
 block discarded – undo
95 95
                     $method = explode(',', $method);
96 96
                 }
97 97
 
98
-                $method = collect($method)->map(function ($name) {
98
+                $method = collect($method)->map(function($name) {
99 99
                     return strtoupper($name);
100
-                })->map(function ($name) {
100
+                })->map(function($name) {
101 101
                     return "<span class='label label-primary'>{$name}</span>";
102 102
                 })->implode('&nbsp;');
103 103
 
@@ -110,8 +110,8 @@  discard block
 block discarded – undo
110 110
         $grid->created_at(trans('admin.created_at'));
111 111
         $grid->updated_at(trans('admin.updated_at'));
112 112
 
113
-        $grid->tools(function (Grid\Tools $tools) {
114
-            $tools->batch(function (Grid\Tools\BatchActions $actions) {
113
+        $grid->tools(function(Grid\Tools $tools) {
114
+            $tools->batch(function(Grid\Tools\BatchActions $actions) {
115 115
                 $actions->disableDelete();
116 116
             });
117 117
         });
@@ -133,8 +133,8 @@  discard block
 block discarded – undo
133 133
         $show->slug(trans('admin.slug'));
134 134
         $show->name(trans('admin.name'));
135 135
 
136
-        $show->http_path(trans('admin.route'))->as(function ($path) {
137
-            return collect(explode("\r\n", $path))->map(function ($path) {
136
+        $show->http_path(trans('admin.route'))->as(function($path) {
137
+            return collect(explode("\r\n", $path))->map(function($path) {
138 138
                 $method = $this->http_method ?: ['ANY'];
139 139
 
140 140
                 if (Str::contains($path, ':')) {
@@ -142,9 +142,9 @@  discard block
 block discarded – undo
142 142
                     $method = explode(',', $method);
143 143
                 }
144 144
 
145
-                $method = collect($method)->map(function ($name) {
145
+                $method = collect($method)->map(function($name) {
146 146
                     return strtoupper($name);
147
-                })->map(function ($name) {
147
+                })->map(function($name) {
148 148
                     return "<span class='label label-primary'>{$name}</span>";
149 149
                 })->implode('&nbsp;');
150 150
 
Please login to merge, or discard this patch.
src/Console/CreateUserCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         /** @var array $selected */
39 39
         $selected = $this->choice('Please choose a role for the user', $roles->pluck('name')->toArray(), null, null, true);
40 40
 
41
-        $roles = $roles->filter(function ($role) use ($selected) {
41
+        $roles = $roles->filter(function($role) use ($selected) {
42 42
             return in_array($role->name, $selected);
43 43
         });
44 44
 
Please login to merge, or discard this patch.
src/Console/ResetPasswordCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         askForUserName:
32 32
         $username = $this->askWithCompletion('Please enter a username who needs to reset his password', $users->pluck('username')->toArray());
33 33
 
34
-        $user = $users->first(function ($user) use ($username) {
34
+        $user = $users->first(function($user) use ($username) {
35 35
             return $user->username == $username;
36 36
         });
37 37
 
Please login to merge, or discard this patch.
src/Grid/Tools.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      */
86 86
     public function disableFilterButton()
87 87
     {
88
-        $this->tools = $this->tools->reject(function ($tool) {
88
+        $this->tools = $this->tools->reject(function($tool) {
89 89
             return $tool instanceof FilterButton;
90 90
         });
91 91
     }
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      */
98 98
     public function disableRefreshButton()
99 99
     {
100
-        $this->tools = $this->tools->reject(function ($tool) {
100
+        $this->tools = $this->tools->reject(function($tool) {
101 101
             return $tool instanceof RefreshButton;
102 102
         });
103 103
     }
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      */
110 110
     public function disableBatchActions()
111 111
     {
112
-        $this->tools = $this->tools->reject(function ($tool) {
112
+        $this->tools = $this->tools->reject(function($tool) {
113 113
             return $tool instanceof BatchActions;
114 114
         });
115 115
     }
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
      */
120 120
     public function batch(\Closure $closure)
121 121
     {
122
-        call_user_func($closure, $this->tools->first(function ($tool) {
122
+        call_user_func($closure, $this->tools->first(function($tool) {
123 123
             return $tool instanceof BatchActions;
124 124
         }));
125 125
     }
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
      */
132 132
     public function render()
133 133
     {
134
-        return $this->tools->map(function ($tool) {
134
+        return $this->tools->map(function($tool) {
135 135
             if ($tool instanceof AbstractTool) {
136 136
                 return $tool->setGrid($this->grid)->render();
137 137
             }
Please login to merge, or discard this patch.
src/Console/AdminCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      */
57 57
     protected function listAdminCommands()
58 58
     {
59
-        $commands = collect(Artisan::all())->mapWithKeys(function ($command, $key) {
59
+        $commands = collect(Artisan::all())->mapWithKeys(function($command, $key) {
60 60
             if (Str::startsWith($key, 'admin:')) {
61 61
                 return [$key => $command];
62 62
             }
Please login to merge, or discard this patch.
src/Form/Field/Select.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -198,13 +198,13 @@  discard block
 block discarded – undo
198 198
      */
199 199
     protected function selected($model, $textField = 'name', $idField = 'id')
200 200
     {
201
-        $this->options = function ($resource) use ($model, $textField, $idField) {
201
+        $this->options = function($resource) use ($model, $textField, $idField) {
202 202
             if (null == $resource) {
203 203
                 return [];
204 204
             }
205 205
 
206 206
             if (is_array($resource) && !empty($resource) && isset($resource[0]['id'])) {
207
-                $resource = array_map(function ($res) {
207
+                $resource = array_map(function($res) {
208 208
                     return $res['id'];
209 209
                 }, $resource);
210 210
             } elseif (is_array($resource) && !empty($resource) && isset($resource['id'])) {
@@ -379,7 +379,7 @@  discard block
 block discarded – undo
379 379
             'groups'  => $this->groups,
380 380
         ]);
381 381
 
382
-        $this->attribute('data-value', implode(',', (array)$this->value()));
382
+        $this->attribute('data-value', implode(',', (array) $this->value()));
383 383
 
384 384
         return parent::render();
385 385
     }
Please login to merge, or discard this patch.
src/Grid/Filter.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
     {
226 226
         $inputs = array_dot(Input::all());
227 227
 
228
-        $inputs = array_filter($inputs, function ($input) {
228
+        $inputs = array_filter($inputs, function($input) {
229 229
             return $input !== '' && !is_null($input);
230 230
         });
231 231
 
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
             $conditions[] = $filter->condition($params);
250 250
         }
251 251
 
252
-        return tap(array_filter($conditions), function ($conditions) {
252
+        return tap(array_filter($conditions), function($conditions) {
253 253
             if (!empty($conditions)) {
254 254
                 $this->expand();
255 255
             }
@@ -267,9 +267,9 @@  discard block
 block discarded – undo
267 267
             return $inputs;
268 268
         }
269 269
 
270
-        $inputs = collect($inputs)->filter(function ($input, $key) {
270
+        $inputs = collect($inputs)->filter(function($input, $key) {
271 271
             return starts_with($key, "{$this->name}_");
272
-        })->mapWithKeys(function ($val, $key) {
272
+        })->mapWithKeys(function($val, $key) {
273 273
             $key = str_replace("{$this->name}_", '', $key);
274 274
 
275 275
             return [$key => $val];
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
      */
323 323
     public function scope($key, $label = '')
324 324
     {
325
-        return tap(new Scope($key, $label), function (Scope $scope) {
325
+        return tap(new Scope($key, $label), function(Scope $scope) {
326 326
             return $this->scopes->push($scope);
327 327
         });
328 328
     }
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
     {
347 347
         $key = request(Scope::QUERY_NAME);
348 348
 
349
-        return $this->scopes->first(function ($scope) use ($key) {
349
+        return $this->scopes->first(function($scope) use ($key) {
350 350
             return $scope->key == $key;
351 351
         });
352 352
     }
@@ -461,9 +461,9 @@  discard block
 block discarded – undo
461 461
 
462 462
         $columns->push($pageKey);
463 463
 
464
-        $groupNames = collect($this->filters)->filter(function ($filter) {
464
+        $groupNames = collect($this->filters)->filter(function($filter) {
465 465
             return $filter instanceof Group;
466
-        })->map(function (AbstractFilter $filter) {
466
+        })->map(function(AbstractFilter $filter) {
467 467
             return "{$filter->getId()}_group";
468 468
         });
469 469
 
Please login to merge, or discard this patch.
src/Show/Field.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
      */
173 173
     public function using(array $values, $default = null)
174 174
     {
175
-        return $this->as(function ($value) use ($values, $default) {
175
+        return $this->as(function($value) use ($values, $default) {
176 176
             if (is_null($value)) {
177 177
                 return $default;
178 178
             }
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
      */
193 193
     public function image($server = '', $width = 200, $height = 200)
194 194
     {
195
-        return $this->as(function ($path) use ($server, $width, $height) {
195
+        return $this->as(function($path) use ($server, $width, $height) {
196 196
 
197 197
             if (empty($path)) {
198 198
                 return '';
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
     {
229 229
         $field = $this;
230 230
 
231
-        return $this->as(function ($path) use ($server, $download, $field) {
231
+        return $this->as(function($path) use ($server, $download, $field) {
232 232
             $name = basename($path);
233 233
 
234 234
             $field->wrapped = false;
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
      */
277 277
     public function link($href = '', $target = '_blank')
278 278
     {
279
-        return $this->as(function ($link) use ($href, $target) {
279
+        return $this->as(function($link) use ($href, $target) {
280 280
             $href = $href ?: $link;
281 281
 
282 282
             return "<a href='$href' target='{$target}'>{$link}</a>";
@@ -292,12 +292,12 @@  discard block
 block discarded – undo
292 292
      */
293 293
     public function label($style = 'success')
294 294
     {
295
-        return $this->as(function ($value) use ($style) {
295
+        return $this->as(function($value) use ($style) {
296 296
             if ($value instanceof Arrayable) {
297 297
                 $value = $value->toArray();
298 298
             }
299 299
 
300
-            return collect((array) $value)->map(function ($name) use ($style) {
300
+            return collect((array) $value)->map(function($name) use ($style) {
301 301
                 return "<span class='label label-{$style}'>$name</span>";
302 302
             })->implode('&nbsp;');
303 303
         });
@@ -312,12 +312,12 @@  discard block
 block discarded – undo
312 312
      */
313 313
     public function badge($style = 'blue')
314 314
     {
315
-        return $this->as(function ($value) use ($style) {
315
+        return $this->as(function($value) use ($style) {
316 316
             if ($value instanceof Arrayable) {
317 317
                 $value = $value->toArray();
318 318
             }
319 319
 
320
-            return collect((array) $value)->map(function ($name) use ($style) {
320
+            return collect((array) $value)->map(function($name) use ($style) {
321 321
                 return "<span class='badge bg-{$style}'>$name</span>";
322 322
             })->implode('&nbsp;');
323 323
         });
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
     {
333 333
         $field = $this;
334 334
 
335
-        return $this->as(function ($value) use ($field) {
335
+        return $this->as(function($value) use ($field) {
336 336
             $content = json_decode($value, true);
337 337
 
338 338
             if (json_last_error() == 0) {
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
     public function render()
444 444
     {
445 445
         if ($this->showAs->isNotEmpty()) {
446
-            $this->showAs->each(function ($callable) {
446
+            $this->showAs->each(function($callable) {
447 447
                 $this->value = $callable->call(
448 448
                     $this->parent->getModel(),
449 449
                     $this->value
Please login to merge, or discard this patch.