@@ -55,7 +55,7 @@ |
||
| 55 | 55 | */ |
| 56 | 56 | public function render() |
| 57 | 57 | { |
| 58 | - return $this->tools->map(function ($tool) { |
|
| 58 | + return $this->tools->map(function($tool) { |
|
| 59 | 59 | if ($tool instanceof Renderable) { |
| 60 | 60 | return $tool->render(); |
| 61 | 61 | } |
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | if (is_array($permission)) { |
| 25 | - collect($permission)->each(function ($permission) { |
|
| 25 | + collect($permission)->each(function($permission) { |
|
| 26 | 26 | call_user_func([Permission::class, 'check'], $permission); |
| 27 | 27 | }); |
| 28 | 28 | |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | */ |
| 162 | 162 | protected function prepareValue($key, $record) |
| 163 | 163 | { |
| 164 | - $field = $this->fields->first(function (Field $field) use ($key) { |
|
| 164 | + $field = $this->fields->first(function(Field $field) use ($key) { |
|
| 165 | 165 | return in_array($key, (array) $field->column()); |
| 166 | 166 | }); |
| 167 | 167 | |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | if (array_key_exists($key, $this->original)) { |
| 185 | 185 | $values = $this->original[$key]; |
| 186 | 186 | |
| 187 | - $this->fields->each(function (Field $field) use ($values) { |
|
| 187 | + $this->fields->each(function(Field $field) use ($values) { |
|
| 188 | 188 | $field->setOriginal($values); |
| 189 | 189 | }); |
| 190 | 190 | } |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | */ |
| 200 | 200 | public function fill(array $data) |
| 201 | 201 | { |
| 202 | - $this->fields->each(function (Field $field) use ($data) { |
|
| 202 | + $this->fields->each(function(Field $field) use ($data) { |
|
| 203 | 203 | $field->fill($data); |
| 204 | 204 | }); |
| 205 | 205 | |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | { |
| 197 | 197 | static::$branchOrder = array_flip(array_flatten($order)); |
| 198 | 198 | |
| 199 | - static::$branchOrder = array_map(function ($item) { |
|
| 199 | + static::$branchOrder = array_map(function($item) { |
|
| 200 | 200 | return ++$item; |
| 201 | 201 | }, static::$branchOrder); |
| 202 | 202 | } |
@@ -290,7 +290,7 @@ discard block |
||
| 290 | 290 | { |
| 291 | 291 | parent::boot(); |
| 292 | 292 | |
| 293 | - static::saving(function (Model $branch) { |
|
| 293 | + static::saving(function(Model $branch) { |
|
| 294 | 294 | $parentColumn = $branch->getParentColumn(); |
| 295 | 295 | |
| 296 | 296 | if (Request::has($parentColumn) && Request::input($parentColumn) == $branch->getKey()) { |
@@ -103,7 +103,7 @@ |
||
| 103 | 103 | protected function initBranchCallback() |
| 104 | 104 | { |
| 105 | 105 | if (is_null($this->branchCallback)) { |
| 106 | - $this->branchCallback = function ($branch) { |
|
| 106 | + $this->branchCallback = function($branch) { |
|
| 107 | 107 | $key = $branch[$this->model->getKeyName()]; |
| 108 | 108 | $title = $branch[$this->model->getTitleColumn()]; |
| 109 | 109 | |
@@ -249,7 +249,7 @@ discard block |
||
| 249 | 249 | */ |
| 250 | 250 | public function field($name) |
| 251 | 251 | { |
| 252 | - return $this->fields()->first(function (Field $field) use ($name) { |
|
| 252 | + return $this->fields()->first(function(Field $field) use ($name) { |
|
| 253 | 253 | return $field->column() == $name; |
| 254 | 254 | }); |
| 255 | 255 | } |
@@ -490,7 +490,7 @@ discard block |
||
| 490 | 490 | $this->form->model()->getUpdatedAtColumn(), |
| 491 | 491 | ]; |
| 492 | 492 | |
| 493 | - $this->fields = $this->fields()->reject(function (Field $field) use ($reservedColumns) { |
|
| 493 | + $this->fields = $this->fields()->reject(function(Field $field) use ($reservedColumns) { |
|
| 494 | 494 | return in_array($field->column(), $reservedColumns); |
| 495 | 495 | }); |
| 496 | 496 | } |
@@ -134,7 +134,7 @@ |
||
| 134 | 134 | { |
| 135 | 135 | $this->name = $this->getStoreName($file); |
| 136 | 136 | |
| 137 | - return tap($this->upload($file), function () { |
|
| 137 | + return tap($this->upload($file), function() { |
|
| 138 | 138 | $this->name = null; |
| 139 | 139 | }); |
| 140 | 140 | } |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | |
| 34 | 34 | $this->callInterventionMethods($image->getRealPath()); |
| 35 | 35 | |
| 36 | - return tap($this->upload($image), function () { |
|
| 36 | + return tap($this->upload($image), function() { |
|
| 37 | 37 | $this->name = null; |
| 38 | 38 | }); |
| 39 | 39 | } |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | */ |
| 48 | 48 | public static function respond(Response $response) |
| 49 | 49 | { |
| 50 | - $next = function () use ($response) { |
|
| 50 | + $next = function() use ($response) { |
|
| 51 | 51 | return $response; |
| 52 | 52 | }; |
| 53 | 53 | |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | */ |
| 140 | 140 | protected function decodeUtf8HtmlEntities($html) |
| 141 | 141 | { |
| 142 | - return preg_replace_callback('/(&#[0-9]+;)/', function ($html) { |
|
| 142 | + return preg_replace_callback('/(&#[0-9]+;)/', function($html) { |
|
| 143 | 143 | return mb_convert_encoding($html[1], 'UTF-8', 'HTML-ENTITIES'); |
| 144 | 144 | }, $html); |
| 145 | 145 | } |