We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | } |
99 | 99 | |
100 | 100 | //remove fields that are not in the submitted form input |
101 | - $relationFields = array_filter($relationFields, function ($field) use ($input) { |
|
101 | + $relationFields = array_filter($relationFields, function($field) use ($input) { |
|
102 | 102 | return Arr::has($input, $field['name']) || isset($input[$field['name']]) || Arr::has($input, Str::afterLast($field['name'], '.')); |
103 | 103 | }); |
104 | 104 | |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | |
178 | 178 | // when using dot notation if relationMethod is not set we are sure we want to exclude those relations. |
179 | 179 | if ($this->getOnlyRelationEntity($field) !== $field['entity']) { |
180 | - if (! $relationMethod) { |
|
180 | + if (!$relationMethod) { |
|
181 | 181 | $excludedFields[] = $nameToExclude; |
182 | 182 | } |
183 | 183 | |
@@ -191,8 +191,8 @@ discard block |
||
191 | 191 | } |
192 | 192 | } |
193 | 193 | |
194 | - return Arr::where($input, function ($item, $key) use ($excludedFields) { |
|
195 | - return ! in_array($key, $excludedFields); |
|
194 | + return Arr::where($input, function($item, $key) use ($excludedFields) { |
|
195 | + return !in_array($key, $excludedFields); |
|
196 | 196 | }); |
197 | 197 | } |
198 | 198 | |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | $jsonCastables = ['array', 'object', 'json']; |
219 | 219 | $fieldCasting = $casted_attributes[$field['name']]; |
220 | 220 | |
221 | - if (in_array($fieldCasting, $jsonCastables) && isset($input[$field['name']]) && ! empty($input[$field['name']]) && ! is_array($input[$field['name']])) { |
|
221 | + if (in_array($fieldCasting, $jsonCastables) && isset($input[$field['name']]) && !empty($input[$field['name']]) && !is_array($input[$field['name']])) { |
|
222 | 222 | try { |
223 | 223 | $input[$field['name']] = json_decode($input[$field['name']]); |
224 | 224 | } catch (\Exception $e) { |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | */ |
137 | 137 | public function afterField($targetFieldName) |
138 | 138 | { |
139 | - $this->transformFields(function ($fields) use ($targetFieldName) { |
|
139 | + $this->transformFields(function($fields) use ($targetFieldName) { |
|
140 | 140 | return $this->moveField($fields, $targetFieldName, false); |
141 | 141 | }); |
142 | 142 | } |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | */ |
149 | 149 | public function beforeField($targetFieldName) |
150 | 150 | { |
151 | - $this->transformFields(function ($fields) use ($targetFieldName) { |
|
151 | + $this->transformFields(function($fields) use ($targetFieldName) { |
|
152 | 152 | return $this->moveField($fields, $targetFieldName, true); |
153 | 153 | }); |
154 | 154 | } |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | */ |
161 | 161 | public function makeFirstField() |
162 | 162 | { |
163 | - if (! $this->fields()) { |
|
163 | + if (!$this->fields()) { |
|
164 | 164 | return false; |
165 | 165 | } |
166 | 166 | |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | */ |
176 | 176 | public function removeField($name) |
177 | 177 | { |
178 | - $this->transformFields(function ($fields) use ($name) { |
|
178 | + $this->transformFields(function($fields) use ($name) { |
|
179 | 179 | Arr::forget($fields, $name); |
180 | 180 | |
181 | 181 | return $fields; |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | */ |
190 | 190 | public function removeFields($array_of_names) |
191 | 191 | { |
192 | - if (! empty($array_of_names)) { |
|
192 | + if (!empty($array_of_names)) { |
|
193 | 193 | foreach ($array_of_names as $name) { |
194 | 194 | $this->removeField($name); |
195 | 195 | } |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | public function removeAllFields() |
203 | 203 | { |
204 | 204 | $current_fields = $this->getCleanStateFields(); |
205 | - if (! empty($current_fields)) { |
|
205 | + if (!empty($current_fields)) { |
|
206 | 206 | foreach ($current_fields as $field) { |
207 | 207 | $this->removeField($field['name']); |
208 | 208 | } |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | */ |
291 | 291 | public function orderFields($order) |
292 | 292 | { |
293 | - $this->transformFields(function ($fields) use ($order) { |
|
293 | + $this->transformFields(function($fields) use ($order) { |
|
294 | 294 | return $this->applyOrderToFields($fields, $order); |
295 | 295 | }); |
296 | 296 | } |
@@ -314,7 +314,7 @@ discard block |
||
314 | 314 | public function hasUploadFields() |
315 | 315 | { |
316 | 316 | $fields = $this->getCleanStateFields(); |
317 | - $upload_fields = Arr::where($fields, function ($value, $key) { |
|
317 | + $upload_fields = Arr::where($fields, function($value, $key) { |
|
318 | 318 | // check if any subfields have uploads |
319 | 319 | if (isset($value['subfields'])) { |
320 | 320 | foreach ($value['subfields'] as $subfield) { |
@@ -386,7 +386,7 @@ discard block |
||
386 | 386 | $alreadyLoaded = $this->getLoadedFieldTypes(); |
387 | 387 | $type = $this->getFieldTypeWithNamespace($field); |
388 | 388 | |
389 | - if (! in_array($type, $this->getLoadedFieldTypes(), true)) { |
|
389 | + if (!in_array($type, $this->getLoadedFieldTypes(), true)) { |
|
390 | 390 | $alreadyLoaded[] = $type; |
391 | 391 | $this->setLoadedFieldTypes($alreadyLoaded); |
392 | 392 | |
@@ -427,7 +427,7 @@ discard block |
||
427 | 427 | */ |
428 | 428 | public function fieldTypeNotLoaded($field) |
429 | 429 | { |
430 | - return ! in_array($this->getFieldTypeWithNamespace($field), $this->getLoadedFieldTypes()); |
|
430 | + return !in_array($this->getFieldTypeWithNamespace($field), $this->getLoadedFieldTypes()); |
|
431 | 431 | } |
432 | 432 | |
433 | 433 | /** |
@@ -439,7 +439,7 @@ discard block |
||
439 | 439 | { |
440 | 440 | $fieldNamesArray = array_column($this->getCleanStateFields(), 'name'); |
441 | 441 | |
442 | - return array_reduce($fieldNamesArray, function ($names, $item) { |
|
442 | + return array_reduce($fieldNamesArray, function($names, $item) { |
|
443 | 443 | if (strpos($item, ',') === false) { |
444 | 444 | $names[] = $item; |
445 | 445 | |
@@ -490,7 +490,7 @@ discard block |
||
490 | 490 | */ |
491 | 491 | public function hasFieldWhere($attribute, $value) |
492 | 492 | { |
493 | - $match = Arr::first($this->getCleanStateFields(), function ($field, $fieldKey) use ($attribute, $value) { |
|
493 | + $match = Arr::first($this->getCleanStateFields(), function($field, $fieldKey) use ($attribute, $value) { |
|
494 | 494 | return isset($field[$attribute]) && $field[$attribute] == $value; |
495 | 495 | }); |
496 | 496 | |
@@ -506,7 +506,7 @@ discard block |
||
506 | 506 | */ |
507 | 507 | public function firstFieldWhere($attribute, $value) |
508 | 508 | { |
509 | - return Arr::first($this->getCleanStateFields(), function ($field, $fieldKey) use ($attribute, $value) { |
|
509 | + return Arr::first($this->getCleanStateFields(), function($field, $fieldKey) use ($attribute, $value) { |
|
510 | 510 | return isset($field[$attribute]) && $field[$attribute] == $value; |
511 | 511 | }); |
512 | 512 | } |