@@ -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 | |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | $this->disablePagination(); |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - $this->tools(function (Tools $tools) { |
|
| 89 | + $this->tools(function(Tools $tools) { |
|
| 90 | 90 | $tools->append(new Grid\Selectable\BrowserBtn()); |
| 91 | 91 | }); |
| 92 | 92 | |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | $hide = $hide ? 'hide' : ''; |
| 99 | 99 | $key = $this->key; |
| 100 | 100 | |
| 101 | - $this->column('__remove__', ' ')->display(function () use ($hide, $key) { |
|
| 101 | + $this->column('__remove__', ' ')->display(function() use ($hide, $key) { |
|
| 102 | 102 | return <<<BTN |
| 103 | 103 | <a href="javascript:void(0);" class="grid-row-remove {$hide}" data-key="{$this->getAttribute($key)}"> |
| 104 | 104 | <i class="fa fa-trash"></i> |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | return $ret; |
| 252 | 252 | } |
| 253 | 253 | |
| 254 | - collect(explode(',', $id))->filter()->each(function ($id) { |
|
| 254 | + collect(explode(',', $id))->filter()->each(function($id) { |
|
| 255 | 255 | $builder = $this->model()->newQuery(); |
| 256 | 256 | |
| 257 | 257 | if ($this->isSoftDeletes) { |
@@ -304,9 +304,9 @@ discard block |
||
| 304 | 304 | |
| 305 | 305 | $data = $model->toArray(); |
| 306 | 306 | |
| 307 | - $this->fields()->filter(function ($field) { |
|
| 307 | + $this->fields()->filter(function($field) { |
|
| 308 | 308 | return $field instanceof Field\File; |
| 309 | - })->each(function (Field\File $file) use ($data) { |
|
| 309 | + })->each(function(Field\File $file) use ($data) { |
|
| 310 | 310 | $file->setOriginal($data); |
| 311 | 311 | |
| 312 | 312 | $file->destroy(); |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | return $response; |
| 332 | 332 | } |
| 333 | 333 | |
| 334 | - DB::transaction(function () { |
|
| 334 | + DB::transaction(function() { |
|
| 335 | 335 | $inserts = $this->prepareInsert($this->updates); |
| 336 | 336 | |
| 337 | 337 | foreach ($inserts as $column => $value) { |
@@ -533,7 +533,7 @@ discard block |
||
| 533 | 533 | return $response; |
| 534 | 534 | } |
| 535 | 535 | |
| 536 | - DB::transaction(function () { |
|
| 536 | + DB::transaction(function() { |
|
| 537 | 537 | $updates = $this->prepareUpdate($this->updates); |
| 538 | 538 | |
| 539 | 539 | foreach ($updates as $column => $value) { |
@@ -985,7 +985,7 @@ discard block |
||
| 985 | 985 | protected function getFieldByColumn($column) |
| 986 | 986 | { |
| 987 | 987 | return $this->fields()->first( |
| 988 | - function (Field $field) use ($column) { |
|
| 988 | + function(Field $field) use ($column) { |
|
| 989 | 989 | if (is_array($field->column())) { |
| 990 | 990 | return in_array($column, $field->column()); |
| 991 | 991 | } |
@@ -1004,7 +1004,7 @@ discard block |
||
| 1004 | 1004 | { |
| 1005 | 1005 | $values = $this->model->toArray(); |
| 1006 | 1006 | |
| 1007 | - $this->fields()->each(function (Field $field) use ($values) { |
|
| 1007 | + $this->fields()->each(function(Field $field) use ($values) { |
|
| 1008 | 1008 | $field->setOriginal($values); |
| 1009 | 1009 | }); |
| 1010 | 1010 | } |
@@ -1032,7 +1032,7 @@ discard block |
||
| 1032 | 1032 | |
| 1033 | 1033 | $data = $this->model->toArray(); |
| 1034 | 1034 | |
| 1035 | - $this->fields()->each(function (Field $field) use ($data) { |
|
| 1035 | + $this->fields()->each(function(Field $field) use ($data) { |
|
| 1036 | 1036 | if (!in_array($field->column(), $this->ignored, true)) { |
| 1037 | 1037 | $field->fill($data); |
| 1038 | 1038 | } |
@@ -1162,7 +1162,7 @@ discard block |
||
| 1162 | 1162 | */ |
| 1163 | 1163 | public function setWidth($fieldWidth = 8, $labelWidth = 2): self |
| 1164 | 1164 | { |
| 1165 | - $this->fields()->each(function ($field) use ($fieldWidth, $labelWidth) { |
|
| 1165 | + $this->fields()->each(function($field) use ($fieldWidth, $labelWidth) { |
|
| 1166 | 1166 | /* @var Field $field */ |
| 1167 | 1167 | $field->setWidth($fieldWidth, $labelWidth); |
| 1168 | 1168 | }); |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | { |
| 53 | 53 | return collect(Arr::dot($from)) |
| 54 | 54 | ->keys() |
| 55 | - ->reject(function ($key) use ($to) { |
|
| 55 | + ->reject(function($key) use ($to) { |
|
| 56 | 56 | return Arr::has($to, $key); |
| 57 | 57 | }); |
| 58 | 58 | } |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | $this->line(''); |
| 67 | 67 | $this->comment("{$title}:"); |
| 68 | 68 | |
| 69 | - $diff->each(function ($key) use ($error) { |
|
| 69 | + $diff->each(function($key) use ($error) { |
|
| 70 | 70 | if ($error) { |
| 71 | 71 | $this->error(" {$key}"); |
| 72 | 72 | } else { |
@@ -102,9 +102,9 @@ discard block |
||
| 102 | 102 | */ |
| 103 | 103 | protected function applyCascadeConditions() |
| 104 | 104 | { |
| 105 | - if( $this->form ) { |
|
| 105 | + if ($this->form) { |
|
| 106 | 106 | $this->form->fields() |
| 107 | - ->filter(function (Form\Field $field) { |
|
| 107 | + ->filter(function(Form\Field $field) { |
|
| 108 | 108 | return $field instanceof CascadeGroup |
| 109 | 109 | && $field->dependsOn($this) |
| 110 | 110 | && $this->hitsCondition($field); |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | return; |
| 163 | 163 | } |
| 164 | 164 | |
| 165 | - $cascadeGroups = collect($this->conditions)->map(function ($condition) { |
|
| 165 | + $cascadeGroups = collect($this->conditions)->map(function($condition) { |
|
| 166 | 166 | return [ |
| 167 | 167 | 'class' => $this->getCascadeClass($condition['value']), |
| 168 | 168 | 'operator' => $condition['operator'], |
@@ -48,7 +48,7 @@ |
||
| 48 | 48 | $this->value = json_encode($this->value, JSON_PRETTY_PRINT); |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - $this->mountPicker(function ($btn) { |
|
| 51 | + $this->mountPicker(function($btn) { |
|
| 52 | 52 | $this->addPickBtn($btn); |
| 53 | 53 | }); |
| 54 | 54 | |