Completed
Pull Request — master (#5493)
by
unknown
19s
created
src/Grid/Model.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -325,9 +325,9 @@  discard block
 block discarded – undo
325 325
 
326 326
         $this->setSort();
327 327
 
328
-        $this->queries->reject(function ($query) {
328
+        $this->queries->reject(function($query) {
329 329
             return $query['method'] == 'paginate';
330
-        })->each(function ($query) {
330
+        })->each(function($query) {
331 331
             $this->model = $this->model->{$query['method']}(...$query['arguments']);
332 332
         });
333 333
 
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
         $this->setSort();
379 379
         $this->setPaginate();
380 380
 
381
-        $this->queries->unique()->each(function ($query) {
381
+        $this->queries->unique()->each(function($query) {
382 382
             $this->model = call_user_func_array([$this->model, $query['method']], $query['arguments']);
383 383
         });
384 384
 
@@ -408,9 +408,9 @@  discard block
 block discarded – undo
408 408
 
409 409
         $queryBuilder = $this->originalModel;
410 410
 
411
-        $this->queries->reject(function ($query) {
411
+        $this->queries->reject(function($query) {
412 412
             return in_array($query['method'], ['get', 'paginate']);
413
-        })->each(function ($query) use (&$queryBuilder) {
413
+        })->each(function($query) use (&$queryBuilder) {
414 414
             $queryBuilder = $queryBuilder->{$query['method']}(...$query['arguments']);
415 415
         });
416 416
 
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
     {
445 445
         $paginate = $this->findQueryByMethod('paginate');
446 446
 
447
-        $this->queries = $this->queries->reject(function ($query) {
447
+        $this->queries = $this->queries->reject(function($query) {
448 448
             return $query['method'] == 'paginate';
449 449
         });
450 450
 
@@ -502,7 +502,7 @@  discard block
 block discarded – undo
502 502
      */
503 503
     protected function findQueryByMethod($method)
504 504
     {
505
-        return $this->queries->first(function ($query) use ($method) {
505
+        return $this->queries->first(function($query) use ($method) {
506 506
             return $query['method'] == $method;
507 507
         });
508 508
     }
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
         }
526 526
 
527 527
         $columnNameContainsDots = Str::contains($columnName, '.');
528
-        $isRelation = $this->queries->contains(function ($query) use ($columnName) {
528
+        $isRelation = $this->queries->contains(function($query) use ($columnName) {
529 529
             // relationship should be camel case
530 530
             $columnName = Str::camel(Str::before($columnName, '.'));
531 531
 
@@ -576,7 +576,7 @@  discard block
 block discarded – undo
576 576
         // relationship should be camel case
577 577
         $relationName = Str::camel($relationName);
578 578
 
579
-        if ($this->queries->contains(function ($query) use ($relationName) {
579
+        if ($this->queries->contains(function($query) use ($relationName) {
580 580
             return $query['method'] == 'with' && in_array($relationName, $query['arguments']);
581 581
         })) {
582 582
             $relation = $this->model->$relationName();
@@ -610,7 +610,7 @@  discard block
 block discarded – undo
610 610
      */
611 611
     public function resetOrderBy()
612 612
     {
613
-        $this->queries = $this->queries->reject(function ($query) {
613
+        $this->queries = $this->queries->reject(function($query) {
614 614
             return $query['method'] == 'orderBy' || $query['method'] == 'orderByDesc';
615 615
         });
616 616
     }
Please login to merge, or discard this patch.
src/Console/GenerateMenuCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     public function handle()
50 50
     {
51 51
         $prefix = config('admin.route.prefix');
52
-        $routes = collect($this->router->getRoutes())->filter(function (Route $route) use ($prefix) {
52
+        $routes = collect($this->router->getRoutes())->filter(function(Route $route) use ($prefix) {
53 53
             $uri = $route->uri();
54 54
             // built-in, parameterized and no-GET are ignored
55 55
             return Str::startsWith($uri, "{$prefix}/")
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
                 && in_array('GET', $route->methods())
60 60
                 && !in_array(substr($route->uri(), strlen("{$prefix}/")), config('admin.menu_exclude'));
61 61
         })
62
-            ->map(function (Route $route) use ($prefix) {
62
+            ->map(function(Route $route) use ($prefix) {
63 63
                 $uri = substr($route->uri(), strlen("{$prefix}/"));
64 64
 
65 65
                 return [
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
         $menus = Menu::all()->pluck('title', 'uri');
75 75
         // exclude exist ones
76
-        $news = $routes->diffKeys($menus)->map(function ($item, $key) {
76
+        $news = $routes->diffKeys($menus)->map(function($item, $key) {
77 77
             return [
78 78
                 'title' => $item,
79 79
                 'uri'   => $key,
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         } else {
88 88
             if ($this->hasOption('dry-run') && $this->option('dry-run')) {
89 89
                 $this->line('<info>The following menu items will be created</info>: ');
90
-                $this->table(['Title', 'Uri'], array_map(function ($item) {
90
+                $this->table(['Title', 'Uri'], array_map(function($item) {
91 91
                     return [
92 92
                         $item['title'],
93 93
                         $item['uri'],
Please login to merge, or discard this patch.
src/Show/Field.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
      */
193 193
     public function using(array $values, $default = null)
194 194
     {
195
-        return $this->as(function ($value) use ($values, $default) {
195
+        return $this->as(function($value) use ($values, $default) {
196 196
             if (is_null($value)) {
197 197
                 return $default;
198 198
             }
@@ -212,8 +212,8 @@  discard block
 block discarded – undo
212 212
      */
213 213
     public function image($server = '', $width = 200, $height = 200)
214 214
     {
215
-        return $this->unescape()->as(function ($images) use ($server, $width, $height) {
216
-            return collect($images)->map(function ($path) use ($server, $width, $height) {
215
+        return $this->unescape()->as(function($images) use ($server, $width, $height) {
216
+            return collect($images)->map(function($path) use ($server, $width, $height) {
217 217
                 if (empty($path)) {
218 218
                     return '';
219 219
                 }
@@ -248,8 +248,8 @@  discard block
 block discarded – undo
248 248
      */
249 249
     public function carousel($width = 300, $height = 200, $server = '')
250 250
     {
251
-        return $this->unescape()->as(function ($images) use ($server, $width, $height) {
252
-            $items = collect($images)->map(function ($path) use ($server, $width, $height) {
251
+        return $this->unescape()->as(function($images) use ($server, $width, $height) {
252
+            $items = collect($images)->map(function($path) use ($server, $width, $height) {
253 253
                 if (empty($path)) {
254 254
                     return '';
255 255
                 }
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
     {
290 290
         $field = $this;
291 291
 
292
-        return $this->unescape()->as(function ($path) use ($server, $download, $field) {
292
+        return $this->unescape()->as(function($path) use ($server, $download, $field) {
293 293
             $name = basename($path);
294 294
 
295 295
             $field->border = false;
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
      */
344 344
     public function link($href = '', $target = '_blank')
345 345
     {
346
-        return $this->unescape()->as(function ($link) use ($href, $target) {
346
+        return $this->unescape()->as(function($link) use ($href, $target) {
347 347
             $href = $href ?: $link;
348 348
 
349 349
             return "<a href='$href' target='{$target}'>{$link}</a>";
@@ -359,12 +359,12 @@  discard block
 block discarded – undo
359 359
      */
360 360
     public function label($style = 'success')
361 361
     {
362
-        return $this->unescape()->as(function ($value) use ($style) {
362
+        return $this->unescape()->as(function($value) use ($style) {
363 363
             if ($value instanceof Arrayable) {
364 364
                 $value = $value->toArray();
365 365
             }
366 366
 
367
-            return collect((array) $value)->map(function ($name) use ($style) {
367
+            return collect((array) $value)->map(function($name) use ($style) {
368 368
                 return "<span class='label label-{$style}'>$name</span>";
369 369
             })->implode('&nbsp;');
370 370
         });
@@ -379,12 +379,12 @@  discard block
 block discarded – undo
379 379
      */
380 380
     public function badge($style = 'blue')
381 381
     {
382
-        return $this->unescape()->as(function ($value) use ($style) {
382
+        return $this->unescape()->as(function($value) use ($style) {
383 383
             if ($value instanceof Arrayable) {
384 384
                 $value = $value->toArray();
385 385
             }
386 386
 
387
-            return collect((array) $value)->map(function ($name) use ($style) {
387
+            return collect((array) $value)->map(function($name) use ($style) {
388 388
                 return "<span class='badge bg-{$style}'>$name</span>";
389 389
             })->implode('&nbsp;');
390 390
         });
@@ -400,7 +400,7 @@  discard block
 block discarded – undo
400 400
      */
401 401
     public function jalali($format = '%Y-%m-%d H:i')
402 402
     {
403
-        return $this->unescape()->as(fn ($v) => "<span dir='ltr'>" . \Morilog\Jalali\Jalalian::forge($v)->format($format) . "</span>");
403
+        return $this->unescape()->as(fn ($v) => "<span dir='ltr'>".\Morilog\Jalali\Jalalian::forge($v)->format($format)."</span>");
404 404
     }
405 405
 
406 406
     /**
@@ -414,7 +414,7 @@  discard block
 block discarded – undo
414 414
      */
415 415
     public function number($decimals = 0, $decimal_seperator = '.', $thousands_seperator = ',')
416 416
     {
417
-        return $this->unescape()->as(function ($value) use ($decimals, $decimal_seperator, $thousands_seperator) {
417
+        return $this->unescape()->as(function($value) use ($decimals, $decimal_seperator, $thousands_seperator) {
418 418
             return number_format($value, $decimals, $decimal_seperator, $thousands_seperator);
419 419
         });
420 420
     }
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
     {
429 429
         $field = $this;
430 430
 
431
-        return $this->unescape()->as(function ($value) use ($field) {
431
+        return $this->unescape()->as(function($value) use ($field) {
432 432
             if (is_string($value)) {
433 433
                 $content = json_decode($value, true);
434 434
             } else {
@@ -452,7 +452,7 @@  discard block
 block discarded – undo
452 452
      */
453 453
     public function filesize()
454 454
     {
455
-        return $this->as(function ($value) {
455
+        return $this->as(function($value) {
456 456
             return file_size($value);
457 457
         });
458 458
     }
@@ -610,7 +610,7 @@  discard block
 block discarded – undo
610 610
 
611 611
         $field = $this;
612 612
 
613
-        return $this->as(function ($value) use ($extend, $field, $arguments) {
613
+        return $this->as(function($value) use ($extend, $field, $arguments) {
614 614
             if (!$extend->border) {
615 615
                 $field->border = false;
616 616
             }
@@ -669,7 +669,7 @@  discard block
 block discarded – undo
669 669
     public function render()
670 670
     {
671 671
         if ($this->showAs->isNotEmpty()) {
672
-            $this->showAs->each(function ($callable) {
672
+            $this->showAs->each(function($callable) {
673 673
                 $this->value = $callable->call(
674 674
                     $this->parent->getModel(),
675 675
                     $this->value
Please login to merge, or discard this patch.
src/Controllers/MenuController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@  discard block
 block discarded – undo
26 26
         return $content
27 27
             ->title(trans('admin.menu'))
28 28
             ->description(trans('admin.list'))
29
-            ->row(function (Row $row) {
29
+            ->row(function(Row $row) {
30 30
                 $row->column(6, $this->treeView()->render());
31 31
 
32
-                $row->column(6, function (Column $column) {
32
+                $row->column(6, function(Column $column) {
33 33
                     $form = new \Encore\Admin\Widgets\Form();
34 34
                     $form->action(admin_url('auth/menu'));
35 35
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 
76 76
         $tree->disableCreate();
77 77
 
78
-        $tree->branch(function ($branch) {
78
+        $tree->branch(function($branch) {
79 79
             $payload = "<i class='fa-solid {$branch['icon']}'></i>&nbsp;<strong>{$branch['title']}</strong>";
80 80
 
81 81
             if (!isset($branch['children'])) {
Please login to merge, or discard this patch.
src/Grid/Selectable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
             $this->disablePagination();
119 119
         }
120 120
 
121
-        $this->tools(function (Tools $tools) {
121
+        $this->tools(function(Tools $tools) {
122 122
             $tools->append(new Grid\Selectable\BrowserBtn());
123 123
         });
124 124
 
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
         $hide = $hide ? 'hide' : '';
131 131
         $key = $this->key;
132 132
 
133
-        $this->column('__remove__', ' ')->display(function () use ($hide, $key) {
133
+        $this->column('__remove__', ' ')->display(function() use ($hide, $key) {
134 134
             return <<<BTN
135 135
 <a href="javascript:void(0);" class="grid-row-remove {$hide}" data-key="{$this->getAttribute($key)}">
136 136
     <i class="fa-solid fa-trash"></i>
Please login to merge, or discard this patch.
src/Grid/Column/ExtendDisplay.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
         $name = $this->getName();
92 92
         $query = request()->query();
93 93
 
94
-        $this->prefix(function ($_, $original) use ($name, $query) {
94
+        $this->prefix(function($_, $original) use ($name, $query) {
95 95
             Arr::set($query, $name, $original);
96 96
 
97 97
             $url = request()->fullUrlWithQuery($query);
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
      */
125 125
     public function using(array $values, $default = null)
126 126
     {
127
-        return $this->display(function ($value) use ($values, $default) {
127
+        return $this->display(function($value) use ($values, $default) {
128 128
             if (is_null($value)) {
129 129
                 return $default;
130 130
             }
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
      */
143 143
     public function replace(array $replacements)
144 144
     {
145
-        return $this->display(function ($value) use ($replacements) {
145
+        return $this->display(function($value) use ($replacements) {
146 146
             if (isset($replacements[$value])) {
147 147
                 return $replacements[$value];
148 148
             }
@@ -160,13 +160,13 @@  discard block
 block discarded – undo
160 160
     public function repeat($input, $seperator = '')
161 161
     {
162 162
         if (is_string($input)) {
163
-            $input = function () use ($input) {
163
+            $input = function() use ($input) {
164 164
                 return $input;
165 165
             };
166 166
         }
167 167
 
168 168
         if ($input instanceof Closure) {
169
-            return $this->display(function ($value) use ($input, $seperator) {
169
+            return $this->display(function($value) use ($input, $seperator) {
170 170
                 return join($seperator, array_fill(0, (int) $value, $input->call($this, [$value])));
171 171
             });
172 172
         }
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
      */
184 184
     public function view($view)
185 185
     {
186
-        return $this->display(function ($value) use ($view) {
186
+        return $this->display(function($value) use ($view) {
187 187
             $model = $this;
188 188
 
189 189
             return view($view, compact('model', 'value'))->render();
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
      */
198 198
     public function filesize()
199 199
     {
200
-        return $this->display(function ($value) {
200
+        return $this->display(function($value) {
201 201
             return file_size($value);
202 202
         });
203 203
     }
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
      */
212 212
     public function gravatar($size = 30)
213 213
     {
214
-        return $this->display(function ($value) use ($size) {
214
+        return $this->display(function($value) use ($size) {
215 215
             $src = sprintf(
216 216
                 'https://www.gravatar.com/avatar/%s?s=%d',
217 217
                 md5(strtolower($value)),
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
      */
233 233
     public function loading($values = [], $others = [])
234 234
     {
235
-        return $this->display(function ($value) use ($values, $others) {
235
+        return $this->display(function($value) use ($values, $others) {
236 236
             $values = (array) $values;
237 237
 
238 238
             if (in_array($value, $values)) {
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
      */
254 254
     public function icon(array $setting, $default = '')
255 255
     {
256
-        return $this->display(function ($value) use ($setting, $default) {
256
+        return $this->display(function($value) use ($setting, $default) {
257 257
             $fa = '';
258 258
 
259 259
             if (isset($setting[$value])) {
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
             Carbon::setLocale($locale);
280 280
         }
281 281
 
282
-        return $this->display(function ($value) {
282
+        return $this->display(function($value) {
283 283
             return Carbon::parse($value)->diffForHumans();
284 284
         });
285 285
     }
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
      */
295 295
     public function bool(array $map = [], $default = false)
296 296
     {
297
-        return $this->display(function ($value) use ($map, $default) {
297
+        return $this->display(function($value) use ($map, $default) {
298 298
             $bool = empty($map) ? boolval($value) : Arr::get($map, $value, $default);
299 299
 
300 300
             return $bool ? '<i class="fa-solid fa-check text-green"></i>' : '<i class="fa-solid fa-close text-red"></i>';
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
      */
312 312
     public function jalali($format = '%Y-%m-%d H:i')
313 313
     {
314
-        return $this->display(fn ($v) => "<span dir='ltr'>" . \Morilog\Jalali\Jalalian::forge($v)->format($format) . "</span>");
314
+        return $this->display(fn ($v) => "<span dir='ltr'>".\Morilog\Jalali\Jalalian::forge($v)->format($format)."</span>");
315 315
     }
316 316
 
317 317
     /**
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
      */
324 324
     public function default($default = '-')
325 325
     {
326
-        return $this->display(function ($value) use ($default) {
326
+        return $this->display(function($value) use ($default) {
327 327
             return $value ?: $default;
328 328
         });
329 329
     }
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
      */
339 339
     public function dot($options = [], $default = '')
340 340
     {
341
-        return $this->prefix(function ($_, $original) use ($options, $default) {
341
+        return $this->prefix(function($_, $original) use ($options, $default) {
342 342
             if (is_null($original)) {
343 343
                 $style = $default;
344 344
             } else {
Please login to merge, or discard this patch.