We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | return ['name' => Str::replace(' ', '', $column)]; |
51 | 51 | } |
52 | 52 | |
53 | - if (is_array($column) && ! isset($column['name'])) { |
|
53 | + if (is_array($column) && !isset($column['name'])) { |
|
54 | 54 | $column['name'] = 'anonymous_column_'.Str::random(5); |
55 | 55 | } |
56 | 56 | |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | */ |
69 | 69 | protected function makeSureColumnHasLabel($column) |
70 | 70 | { |
71 | - if (! isset($column['label'])) { |
|
71 | + if (!isset($column['label'])) { |
|
72 | 72 | $column['label'] = mb_ucfirst($this->makeLabel($column['name'])); |
73 | 73 | } |
74 | 74 | |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | */ |
154 | 154 | protected function makeSureColumnHasKey($column) |
155 | 155 | { |
156 | - if (! isset($column['key'])) { |
|
156 | + if (!isset($column['key'])) { |
|
157 | 157 | $column['key'] = str_replace('.', '__', $column['name']); |
158 | 158 | } |
159 | 159 | |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | */ |
172 | 172 | protected function makeSureColumnHasWrapper($column) |
173 | 173 | { |
174 | - if (! isset($column['wrapper'])) { |
|
174 | + if (!isset($column['wrapper'])) { |
|
175 | 175 | $column['wrapper'] = []; |
176 | 176 | } |
177 | 177 | |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | { |
257 | 257 | // if this is a relation type field and no corresponding model was specified, |
258 | 258 | // get it from the relation method defined in the main model |
259 | - if (isset($column['entity']) && $column['entity'] !== false && ! isset($column['model'])) { |
|
259 | + if (isset($column['entity']) && $column['entity'] !== false && !isset($column['model'])) { |
|
260 | 260 | $column['model'] = $this->getRelationModel($column['entity']); |
261 | 261 | } |
262 | 262 | |
@@ -293,8 +293,7 @@ discard block |
||
293 | 293 | $columnsArray = $this->columns(); |
294 | 294 | |
295 | 295 | if (array_key_exists($targetColumnName, $columnsArray)) { |
296 | - $targetColumnPosition = $before ? array_search($targetColumnName, array_keys($columnsArray)) : |
|
297 | - array_search($targetColumnName, array_keys($columnsArray)) + 1; |
|
296 | + $targetColumnPosition = $before ? array_search($targetColumnName, array_keys($columnsArray)) : array_search($targetColumnName, array_keys($columnsArray)) + 1; |
|
298 | 297 | |
299 | 298 | $element = array_pop($columnsArray); |
300 | 299 | $beginningPart = array_slice($columnsArray, 0, $targetColumnPosition, true); |
@@ -316,7 +315,7 @@ discard block |
||
316 | 315 | { |
317 | 316 | static $cache = []; |
318 | 317 | |
319 | - if (! $this->driverIsSql()) { |
|
318 | + if (!$this->driverIsSql()) { |
|
320 | 319 | return true; |
321 | 320 | } |
322 | 321 | |
@@ -332,7 +331,7 @@ discard block |
||
332 | 331 | /** |
333 | 332 | * Prepare the column attributes and add it to operation settings. |
334 | 333 | */ |
335 | - private function prepareAttributesAndAddColumn(array|string $column): CrudColumn |
|
334 | + private function prepareAttributesAndAddColumn(array | string $column): CrudColumn |
|
336 | 335 | { |
337 | 336 | $column = $this->makeSureColumnHasNeededAttributes($column); |
338 | 337 | $this->addColumnToOperationSettings($column); |
@@ -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,16 +256,16 @@ discard block |
||
256 | 256 | */ |
257 | 257 | protected function makeSureSubfieldsHaveNecessaryAttributes($field) |
258 | 258 | { |
259 | - if (! isset($field['subfields']) || ! is_array($field['subfields'])) { |
|
259 | + if (!isset($field['subfields']) || !is_array($field['subfields'])) { |
|
260 | 260 | return $field; |
261 | 261 | } |
262 | 262 | |
263 | - if (! is_multidimensional_array($field['subfields'], true)) { |
|
263 | + if (!is_multidimensional_array($field['subfields'], true)) { |
|
264 | 264 | abort(500, 'Subfields of «'.$field['name'].'» are malformed. Make sure you provide an array of subfields.'); |
265 | 265 | } |
266 | 266 | |
267 | 267 | foreach ($field['subfields'] as $key => $subfield) { |
268 | - if (empty($subfield) || ! isset($subfield['name'])) { |
|
268 | + if (empty($subfield) || !isset($subfield['name'])) { |
|
269 | 269 | abort(500, 'A subfield of «'.$field['name'].'» is malformed. Subfield attribute name can\'t be empty.'); |
270 | 270 | } |
271 | 271 | |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | |
279 | 279 | $subfield['parentFieldName'] = $field['name']; |
280 | 280 | |
281 | - if (! isset($field['model'])) { |
|
281 | + if (!isset($field['model'])) { |
|
282 | 282 | // we're inside a simple 'repeatable' with no model/relationship, so |
283 | 283 | // we assume all subfields are supposed to be text fields |
284 | 284 | $subfield['type'] = $subfield['type'] ?? 'text'; |
@@ -305,11 +305,11 @@ discard block |
||
305 | 305 | case 'BelongsToMany': |
306 | 306 | $pivotSelectorField = static::getPivotFieldStructure($field); |
307 | 307 | |
308 | - $pivot = Arr::where($field['subfields'], function ($item) use ($pivotSelectorField) { |
|
308 | + $pivot = Arr::where($field['subfields'], function($item) use ($pivotSelectorField) { |
|
309 | 309 | return $item['name'] === $pivotSelectorField['name']; |
310 | 310 | }); |
311 | 311 | |
312 | - if (! empty($pivot)) { |
|
312 | + if (!empty($pivot)) { |
|
313 | 313 | break; |
314 | 314 | } |
315 | 315 | |
@@ -322,11 +322,11 @@ discard block |
||
322 | 322 | $entity = isset($field['baseEntity']) ? $field['baseEntity'].'.'.$field['entity'] : $field['entity']; |
323 | 323 | $relationInstance = $this->getRelationInstance(['entity' => $entity]); |
324 | 324 | |
325 | - $localKeyField = Arr::where($field['subfields'], function ($item) use ($relationInstance) { |
|
325 | + $localKeyField = Arr::where($field['subfields'], function($item) use ($relationInstance) { |
|
326 | 326 | return $item['name'] === $relationInstance->getRelated()->getKeyName(); |
327 | 327 | }); |
328 | 328 | |
329 | - if (! empty($localKeyField)) { |
|
329 | + if (!empty($localKeyField)) { |
|
330 | 330 | break; |
331 | 331 | } |
332 | 332 | |
@@ -351,7 +351,7 @@ discard block |
||
351 | 351 | { |
352 | 352 | // if a tab was mentioned, we should enable it |
353 | 353 | if (isset($field['tab'])) { |
354 | - if (! $this->tabsEnabled()) { |
|
354 | + if (!$this->tabsEnabled()) { |
|
355 | 355 | $this->enableTabs(); |
356 | 356 | } |
357 | 357 | } |