We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -818,7 +818,7 @@ discard block |
||
818 | 818 | |
819 | 819 | public function testCreateBelongsToFake() |
820 | 820 | { |
821 | - $belongsToField = [ // select_grouped |
|
821 | + $belongsToField = [// select_grouped |
|
822 | 822 | 'label' => 'Select_grouped', |
823 | 823 | 'type' => 'select_grouped', //https://github.com/Laravel-Backpack/CRUD/issues/502 |
824 | 824 | 'name' => 'bang_relation_field', |
@@ -954,7 +954,7 @@ discard block |
||
954 | 954 | 'nickname' => 'i_have_has_one', |
955 | 955 | 'profile_picture' => 'ohh my picture 1.jpg', |
956 | 956 | 'article' => 1, |
957 | - 'addresses' => [ // HasOne is tested in other test function |
|
957 | + 'addresses' => [// HasOne is tested in other test function |
|
958 | 958 | [ |
959 | 959 | 'city' => 2, |
960 | 960 | 'street' => 'test', |
@@ -1707,23 +1707,23 @@ discard block |
||
1707 | 1707 | $this->crudPanel->addField([ |
1708 | 1708 | 'name' => 'name', |
1709 | 1709 | 'events' => [ |
1710 | - 'created' => function ($entry) { |
|
1710 | + 'created' => function($entry) { |
|
1711 | 1711 | }, |
1712 | - 'creating' => function ($entry) { |
|
1712 | + 'creating' => function($entry) { |
|
1713 | 1713 | $entry->email = '[email protected]'; |
1714 | 1714 | $entry->password = Hash::make('password'); |
1715 | 1715 | }, |
1716 | - 'saving' => function ($entry) { |
|
1716 | + 'saving' => function($entry) { |
|
1717 | 1717 | }, |
1718 | - 'saved' => function ($entry) { |
|
1718 | + 'saved' => function($entry) { |
|
1719 | 1719 | }, |
1720 | - 'updating' => function ($entry) { |
|
1720 | + 'updating' => function($entry) { |
|
1721 | 1721 | }, |
1722 | - 'updated' => function ($entry) { |
|
1722 | + 'updated' => function($entry) { |
|
1723 | 1723 | }, |
1724 | - 'deleting' => function ($entry) { |
|
1724 | + 'deleting' => function($entry) { |
|
1725 | 1725 | }, |
1726 | - 'deleted' => function ($entry) { |
|
1726 | + 'deleted' => function($entry) { |
|
1727 | 1727 | }, |
1728 | 1728 | ], |
1729 | 1729 | ]); |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | $this->crudPanel->addColumn([ |
91 | 91 | 'name' => 'test', |
92 | 92 | 'type' => 'my_custom_type', |
93 | - 'searchLogic' => function ($query, $column, $searchTerm) { |
|
93 | + 'searchLogic' => function($query, $column, $searchTerm) { |
|
94 | 94 | $query->where($column['name'], 'like', "%{$searchTerm}%"); |
95 | 95 | }, |
96 | 96 | 'tableColumn' => true, |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | 'name' => 'name', |
226 | 226 | 'type' => 'text', |
227 | 227 | 'tableColumn' => true, |
228 | - 'orderLogic' => function ($query, $column, $searchTerm) { |
|
228 | + 'orderLogic' => function($query, $column, $searchTerm) { |
|
229 | 229 | $query->orderBy('name', 'asc'); |
230 | 230 | }, |
231 | 231 | ]); |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | 'name' => 'name', |
245 | 245 | 'type' => 'text', |
246 | 246 | 'tableColumn' => true, |
247 | - 'orderLogic' => function ($query, $column, $searchTerm) { |
|
247 | + 'orderLogic' => function($query, $column, $searchTerm) { |
|
248 | 248 | $query->orderBy('id', 'asc'); |
249 | 249 | }, |
250 | 250 | ]); |
@@ -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, $includeRelationFields = true) |
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 | |
@@ -333,11 +333,11 @@ discard block |
||
333 | 333 | $entity = isset($field['baseEntity']) ? $field['baseEntity'].'.'.$field['entity'] : $field['entity']; |
334 | 334 | $relationInstance = $this->getRelationInstance(['entity' => $entity]); |
335 | 335 | |
336 | - $localKeyField = Arr::where($field['subfields'], function ($item) use ($relationInstance) { |
|
336 | + $localKeyField = Arr::where($field['subfields'], function($item) use ($relationInstance) { |
|
337 | 337 | return $item['name'] === $relationInstance->getRelated()->getKeyName(); |
338 | 338 | }); |
339 | 339 | |
340 | - if (! empty($localKeyField)) { |
|
340 | + if (!empty($localKeyField)) { |
|
341 | 341 | break; |
342 | 342 | } |
343 | 343 | |
@@ -362,7 +362,7 @@ discard block |
||
362 | 362 | { |
363 | 363 | // if a tab was mentioned, we should enable it |
364 | 364 | if (isset($field['tab'])) { |
365 | - if (! $this->tabsEnabled()) { |
|
365 | + if (!$this->tabsEnabled()) { |
|
366 | 366 | $this->enableTabs(); |
367 | 367 | } |
368 | 368 | } |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | */ |
88 | 88 | public function key(string $key) |
89 | 89 | { |
90 | - if (! isset($this->attributes['name'])) { |
|
90 | + if (!isset($this->attributes['name'])) { |
|
91 | 91 | abort(500, 'Column name must be defined before changing the key.'); |
92 | 92 | } |
93 | 93 | |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | */ |
116 | 116 | public function subfields($subfields) |
117 | 117 | { |
118 | - $callAttributeMacro = ! isset($this->attributes['subfields']); |
|
118 | + $callAttributeMacro = !isset($this->attributes['subfields']); |
|
119 | 119 | $this->attributes['subfields'] = $subfields; |
120 | 120 | $this->attributes = $this->crud()->makeSureColumnHasNeededAttributes($this->attributes); |
121 | 121 |