We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | return ['name' => Str::replace(' ', '', $field)]; |
| 116 | 116 | } |
| 117 | 117 | |
| 118 | - if (is_array($field) && ! isset($field['name'])) { |
|
| 118 | + if (is_array($field) && !isset($field['name'])) { |
|
| 119 | 119 | abort(500, 'All fields must have their name defined'); |
| 120 | 120 | } |
| 121 | 121 | |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | } |
| 190 | 190 | // if there's a model defined, but no attribute |
| 191 | 191 | // guess an attribute using the identifiableAttribute functionality in CrudTrait |
| 192 | - if (isset($field['model']) && ! isset($field['attribute']) && method_exists($field['model'], 'identifiableAttribute')) { |
|
| 192 | + if (isset($field['model']) && !isset($field['attribute']) && method_exists($field['model'], 'identifiableAttribute')) { |
|
| 193 | 193 | $field['attribute'] = (new $field['model']())->identifiableAttribute(); |
| 194 | 194 | } |
| 195 | 195 | |
@@ -205,7 +205,7 @@ discard block |
||
| 205 | 205 | */ |
| 206 | 206 | protected function makeSureFieldHasLabel($field) |
| 207 | 207 | { |
| 208 | - if (! isset($field['label'])) { |
|
| 208 | + if (!isset($field['label'])) { |
|
| 209 | 209 | $name = str_replace(',', ' ', $field['name']); |
| 210 | 210 | $name = str_replace('_id', '', $name); |
| 211 | 211 | $field['label'] = mb_ucfirst(str_replace('_', ' ', $name)); |
@@ -223,7 +223,7 @@ discard block |
||
| 223 | 223 | */ |
| 224 | 224 | protected function makeSureFieldHasType($field) |
| 225 | 225 | { |
| 226 | - if (! isset($field['type'])) { |
|
| 226 | + if (!isset($field['type'])) { |
|
| 227 | 227 | $field['type'] = isset($field['relation_type']) ? $this->inferFieldTypeFromRelationType($field['relation_type']) : $this->inferFieldTypeFromDbColumnType($field['name']); |
| 228 | 228 | } |
| 229 | 229 | |
@@ -256,12 +256,12 @@ discard block |
||
| 256 | 256 | */ |
| 257 | 257 | protected function makeSureSubfieldsHaveNecessaryAttributes($field) |
| 258 | 258 | { |
| 259 | - if (! isset($field['subfields'])) { |
|
| 259 | + if (!isset($field['subfields'])) { |
|
| 260 | 260 | return $field; |
| 261 | 261 | } |
| 262 | 262 | |
| 263 | 263 | foreach ($field['subfields'] as $key => $subfield) { |
| 264 | - if (empty($subfield) || ! isset($subfield['name'])) { |
|
| 264 | + if (empty($subfield) || !isset($subfield['name'])) { |
|
| 265 | 265 | abort(500, 'Subfield name can\'t be empty'); |
| 266 | 266 | } |
| 267 | 267 | |
@@ -272,7 +272,7 @@ discard block |
||
| 272 | 272 | |
| 273 | 273 | $subfield['parentFieldName'] = $field['name']; |
| 274 | 274 | |
| 275 | - if (! isset($field['model'])) { |
|
| 275 | + if (!isset($field['model'])) { |
|
| 276 | 276 | // we're inside a simple 'repeatable' with no model/relationship, so |
| 277 | 277 | // we assume all subfields are supposed to be text fields |
| 278 | 278 | $subfield['type'] = $subfield['type'] ?? 'text'; |
@@ -299,11 +299,11 @@ discard block |
||
| 299 | 299 | case 'BelongsToMany': |
| 300 | 300 | $pivotSelectorField = static::getPivotFieldStructure($field); |
| 301 | 301 | |
| 302 | - $pivot = Arr::where($field['subfields'], function ($item) use ($pivotSelectorField) { |
|
| 302 | + $pivot = Arr::where($field['subfields'], function($item) use ($pivotSelectorField) { |
|
| 303 | 303 | return $item['name'] === $pivotSelectorField['name']; |
| 304 | 304 | }); |
| 305 | 305 | |
| 306 | - if (! empty($pivot)) { |
|
| 306 | + if (!empty($pivot)) { |
|
| 307 | 307 | break; |
| 308 | 308 | } |
| 309 | 309 | |
@@ -316,11 +316,11 @@ discard block |
||
| 316 | 316 | $entity = isset($field['baseEntity']) ? $field['baseEntity'].'.'.$field['entity'] : $field['entity']; |
| 317 | 317 | $relationInstance = $this->getRelationInstance(['entity' => $entity]); |
| 318 | 318 | |
| 319 | - $localKeyField = Arr::where($field['subfields'], function ($item) use ($relationInstance) { |
|
| 319 | + $localKeyField = Arr::where($field['subfields'], function($item) use ($relationInstance) { |
|
| 320 | 320 | return $item['name'] === $relationInstance->getRelated()->getKeyName(); |
| 321 | 321 | }); |
| 322 | 322 | |
| 323 | - if (! empty($localKeyField)) { |
|
| 323 | + if (!empty($localKeyField)) { |
|
| 324 | 324 | break; |
| 325 | 325 | } |
| 326 | 326 | |
@@ -345,7 +345,7 @@ discard block |
||
| 345 | 345 | { |
| 346 | 346 | // if a tab was mentioned, we should enable it |
| 347 | 347 | if (isset($field['tab'])) { |
| 348 | - if (! $this->tabsEnabled()) { |
|
| 348 | + if (!$this->tabsEnabled()) { |
|
| 349 | 349 | $this->enableTabs(); |
| 350 | 350 | } |
| 351 | 351 | } |