@@ -26,10 +26,10 @@ discard block |
||
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 |
||
75 | 75 | |
76 | 76 | $tree->disableCreate(); |
77 | 77 | |
78 | - $tree->branch(function ($branch) { |
|
78 | + $tree->branch(function($branch) { |
|
79 | 79 | $payload = "<i class='fa {$branch['icon']}'></i> <strong>{$branch['title']}</strong>"; |
80 | 80 | |
81 | 81 | if (!isset($branch['children'])) { |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | */ |
49 | 49 | public function handle() |
50 | 50 | { |
51 | - $routes = collect($this->router->getRoutes())->filter(function (Route $route) { |
|
51 | + $routes = collect($this->router->getRoutes())->filter(function(Route $route) { |
|
52 | 52 | $uri = $route->uri(); |
53 | 53 | // built-in, parameterized and no-GET are ignored |
54 | 54 | return Str::startsWith($uri, 'admin/') |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | && !Str::contains($uri, '{') |
58 | 58 | && in_array('GET', $route->methods()); |
59 | 59 | }) |
60 | - ->map(function (Route $route) { |
|
60 | + ->map(function(Route $route) { |
|
61 | 61 | $uri = substr($route->uri(), strlen('admin/')); |
62 | 62 | |
63 | 63 | return [ |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | |
72 | 72 | $menus = Menu::all()->pluck('title', 'uri'); |
73 | 73 | // exclude exist ones |
74 | - $news = $routes->diffKeys($menus)->map(function ($item, $key) { |
|
74 | + $news = $routes->diffKeys($menus)->map(function($item, $key) { |
|
75 | 75 | return [ |
76 | 76 | 'title' => $item, |
77 | 77 | 'uri' => $key, |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | } else { |
86 | 86 | if ($this->hasOption('dry-run') && $this->option('dry-run')) { |
87 | 87 | $this->line('<info>The following menu items will be created</info>: '); |
88 | - $this->table(['Title', 'Uri'], array_map(function ($item) { |
|
88 | + $this->table(['Title', 'Uri'], array_map(function($item) { |
|
89 | 89 | return [ |
90 | 90 | $item['title'], |
91 | 91 | $item['uri'], |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | |
155 | 155 | // for create or update |
156 | 156 | if ($this->pathColumn) { |
157 | - $targets = array_map(function ($target) { |
|
157 | + $targets = array_map(function($target) { |
|
158 | 158 | return [$this->pathColumn => $target]; |
159 | 159 | }, $targets); |
160 | 160 | } |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | { |
186 | 186 | $this->name = $this->getStoreName($file); |
187 | 187 | |
188 | - return tap($this->upload($file), function () { |
|
188 | + return tap($this->upload($file), function() { |
|
189 | 189 | $this->name = null; |
190 | 190 | }); |
191 | 191 | } |
@@ -29,7 +29,7 @@ |
||
29 | 29 | ]; |
30 | 30 | |
31 | 31 | try { |
32 | - DB::transaction(function () use ($model) { |
|
32 | + DB::transaction(function() use ($model) { |
|
33 | 33 | $model->delete(); |
34 | 34 | }); |
35 | 35 | } catch (\Exception $exception) { |
@@ -139,16 +139,16 @@ discard block |
||
139 | 139 | call_user_func($this->callback, $this); |
140 | 140 | } |
141 | 141 | |
142 | - $response = function () { |
|
142 | + $response = function() { |
|
143 | 143 | $handle = fopen('php://output', 'w'); |
144 | 144 | $titles = []; |
145 | 145 | |
146 | - $this->chunk(function ($collection) use ($handle, &$titles) { |
|
146 | + $this->chunk(function($collection) use ($handle, &$titles) { |
|
147 | 147 | Column::setOriginalGridModels($collection); |
148 | 148 | |
149 | 149 | $original = $current = $collection->toArray(); |
150 | 150 | |
151 | - $this->grid->getColumns()->map(function (Column $column) use (&$current) { |
|
151 | + $this->grid->getColumns()->map(function(Column $column) use (&$current) { |
|
152 | 152 | $current = $column->fill($current); |
153 | 153 | $this->grid->columnNames[] = $column->getName(); |
154 | 154 | }); |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | protected function getVisiableTitles() |
178 | 178 | { |
179 | 179 | $titles = $this->grid->visibleColumns() |
180 | - ->mapWithKeys(function (Column $column) { |
|
180 | + ->mapWithKeys(function(Column $column) { |
|
181 | 181 | return [$column->getName() => $column->getLabel()]; |
182 | 182 | }); |
183 | 183 |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | |
227 | 227 | $this->overwriteExistingField($name); |
228 | 228 | |
229 | - return tap($field, function ($field) { |
|
229 | + return tap($field, function($field) { |
|
230 | 230 | $this->fields->push($field); |
231 | 231 | }); |
232 | 232 | } |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | |
249 | 249 | $this->overwriteExistingRelation($name); |
250 | 250 | |
251 | - return tap($relation, function ($relation) { |
|
251 | + return tap($relation, function($relation) { |
|
252 | 252 | $this->relations->push($relation); |
253 | 253 | }); |
254 | 254 | } |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | } |
266 | 266 | |
267 | 267 | $this->fields = $this->fields->filter( |
268 | - function (Field $field) use ($name) { |
|
268 | + function(Field $field) use ($name) { |
|
269 | 269 | return $field->getName() != $name; |
270 | 270 | } |
271 | 271 | ); |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | } |
284 | 284 | |
285 | 285 | $this->relations = $this->relations->filter( |
286 | - function (Relation $relation) use ($name) { |
|
286 | + function(Relation $relation) use ($name) { |
|
287 | 287 | return $relation->getName() != $name; |
288 | 288 | } |
289 | 289 | ); |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | */ |
341 | 341 | public function setWidth($fieldWidth = 8, $labelWidth = 2) |
342 | 342 | { |
343 | - collect($this->fields)->each(function ($field) use ($fieldWidth, $labelWidth) { |
|
343 | + collect($this->fields)->each(function($field) use ($fieldWidth, $labelWidth) { |
|
344 | 344 | $field->setWidth($fieldWidth, $labelWidth); |
345 | 345 | }); |
346 | 346 |
@@ -331,9 +331,9 @@ discard block |
||
331 | 331 | |
332 | 332 | $this->setSort(); |
333 | 333 | |
334 | - $this->queries->reject(function ($query) { |
|
334 | + $this->queries->reject(function($query) { |
|
335 | 335 | return $query['method'] == 'paginate'; |
336 | - })->each(function ($query) { |
|
336 | + })->each(function($query) { |
|
337 | 337 | $this->model = $this->model->{$query['method']}(...$query['arguments']); |
338 | 338 | }); |
339 | 339 | |
@@ -384,7 +384,7 @@ discard block |
||
384 | 384 | $this->setSort(); |
385 | 385 | $this->setPaginate(); |
386 | 386 | |
387 | - $this->queries->unique()->each(function ($query) { |
|
387 | + $this->queries->unique()->each(function($query) { |
|
388 | 388 | if ($query['method'] == 'with') { |
389 | 389 | $this->model = $this->model->with($query['arguments']); |
390 | 390 | } else { |
@@ -418,9 +418,9 @@ discard block |
||
418 | 418 | |
419 | 419 | $queryBuilder = $this->originalModel; |
420 | 420 | |
421 | - $this->queries->reject(function ($query) { |
|
421 | + $this->queries->reject(function($query) { |
|
422 | 422 | return in_array($query['method'], ['get', 'paginate']); |
423 | - })->each(function ($query) use (&$queryBuilder) { |
|
423 | + })->each(function($query) use (&$queryBuilder) { |
|
424 | 424 | $queryBuilder = $queryBuilder->{$query['method']}(...$query['arguments']); |
425 | 425 | }); |
426 | 426 | |
@@ -454,7 +454,7 @@ discard block |
||
454 | 454 | { |
455 | 455 | $paginate = $this->findQueryByMethod('paginate'); |
456 | 456 | |
457 | - $this->queries = $this->queries->reject(function ($query) { |
|
457 | + $this->queries = $this->queries->reject(function($query) { |
|
458 | 458 | return $query['method'] == 'paginate'; |
459 | 459 | }); |
460 | 460 | |
@@ -512,7 +512,7 @@ discard block |
||
512 | 512 | */ |
513 | 513 | protected function findQueryByMethod($method) |
514 | 514 | { |
515 | - return $this->queries->first(function ($query) use ($method) { |
|
515 | + return $this->queries->first(function($query) use ($method) { |
|
516 | 516 | return $query['method'] == $method; |
517 | 517 | }); |
518 | 518 | } |
@@ -535,7 +535,7 @@ discard block |
||
535 | 535 | } |
536 | 536 | |
537 | 537 | $columnNameContainsDots = Str::contains($columnName, '.'); |
538 | - $isRelation = $this->queries->contains(function ($query) use ($columnName) { |
|
538 | + $isRelation = $this->queries->contains(function($query) use ($columnName) { |
|
539 | 539 | return $query['method'] === 'with' && in_array($columnName, $query['arguments'], true); |
540 | 540 | }); |
541 | 541 | if ($columnNameContainsDots === true && $isRelation) { |
@@ -581,7 +581,7 @@ discard block |
||
581 | 581 | { |
582 | 582 | list($relationName, $relationColumn) = explode('.', $column); |
583 | 583 | |
584 | - if ($this->queries->contains(function ($query) use ($relationName) { |
|
584 | + if ($this->queries->contains(function($query) use ($relationName) { |
|
585 | 585 | return $query['method'] == 'with' && in_array($relationName, $query['arguments']); |
586 | 586 | })) { |
587 | 587 | $relation = $this->model->$relationName(); |
@@ -615,7 +615,7 @@ discard block |
||
615 | 615 | */ |
616 | 616 | public function resetOrderBy() |
617 | 617 | { |
618 | - $this->queries = $this->queries->reject(function ($query) { |
|
618 | + $this->queries = $this->queries->reject(function($query) { |
|
619 | 619 | return $query['method'] == 'orderBy' || $query['method'] == 'orderByDesc'; |
620 | 620 | }); |
621 | 621 | } |