We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | { |
54 | 54 | $entry = $this->getCurrentEntry(); |
55 | 55 | |
56 | - if (! $entry) { |
|
56 | + if (!$entry) { |
|
57 | 57 | return false; |
58 | 58 | } |
59 | 59 | |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | */ |
69 | 69 | public function getEntry($id) |
70 | 70 | { |
71 | - if (! $this->entry) { |
|
71 | + if (!$this->entry) { |
|
72 | 72 | $this->entry = $this->getModelWithCrudPanelQuery()->findOrFail($id); |
73 | 73 | $this->entry = $this->entry->withFakes(); |
74 | 74 | } |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | |
79 | 79 | private function shouldUseFallbackLocale() |
80 | 80 | { |
81 | - if($this->getOperationSetting('useFallbackLocale') !== null) { |
|
81 | + if ($this->getOperationSetting('useFallbackLocale') !== null) { |
|
82 | 82 | return $this->getOperationSetting('useFallbackLocale'); |
83 | 83 | } |
84 | 84 | |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | */ |
97 | 97 | public function getEntryWithLocale($id) |
98 | 98 | { |
99 | - if (! $this->entry) { |
|
99 | + if (!$this->entry) { |
|
100 | 100 | $this->entry = $this->getEntry($id); |
101 | 101 | } |
102 | 102 | |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | */ |
179 | 179 | public function enableDetailsRow() |
180 | 180 | { |
181 | - if (! backpack_pro()) { |
|
181 | + if (!backpack_pro()) { |
|
182 | 182 | throw new BackpackProRequiredException('Details row'); |
183 | 183 | } |
184 | 184 | |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | // we will apply the same labels as the values to the menu if developer didn't |
278 | 278 | $this->abortIfInvalidPageLength($menu[0]); |
279 | 279 | |
280 | - if (! isset($menu[1]) || ! is_array($menu[1])) { |
|
280 | + if (!isset($menu[1]) || !is_array($menu[1])) { |
|
281 | 281 | $menu[1] = $menu[0]; |
282 | 282 | } |
283 | 283 | } else { |
@@ -365,7 +365,7 @@ discard block |
||
365 | 365 | */ |
366 | 366 | public function enableExportButtons() |
367 | 367 | { |
368 | - if (! backpack_pro()) { |
|
368 | + if (!backpack_pro()) { |
|
369 | 369 | throw new BackpackProRequiredException('Export buttons'); |
370 | 370 | } |
371 | 371 |
@@ -109,11 +109,11 @@ discard block |
||
109 | 109 | */ |
110 | 110 | public function setModel($model_namespace) |
111 | 111 | { |
112 | - if (! class_exists($model_namespace)) { |
|
112 | + if (!class_exists($model_namespace)) { |
|
113 | 113 | throw new Exception('The model does not exist.', 500); |
114 | 114 | } |
115 | 115 | |
116 | - if (! method_exists($model_namespace, 'hasCrudTrait')) { |
|
116 | + if (!method_exists($model_namespace, 'hasCrudTrait')) { |
|
117 | 117 | throw new Exception('Please use CrudTrait on the model.', 500); |
118 | 118 | } |
119 | 119 | |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | |
207 | 207 | $complete_route = $route.'.index'; |
208 | 208 | |
209 | - if (! \Route::has($complete_route)) { |
|
209 | + if (!\Route::has($complete_route)) { |
|
210 | 210 | throw new Exception('There are no routes for this route name.', 404); |
211 | 211 | } |
212 | 212 | |
@@ -304,7 +304,7 @@ discard block |
||
304 | 304 | */ |
305 | 305 | public function getFirstOfItsTypeInArray($type, $array) |
306 | 306 | { |
307 | - return Arr::first($array, function ($item) use ($type) { |
|
307 | + return Arr::first($array, function($item) use ($type) { |
|
308 | 308 | return $item['type'] == $type; |
309 | 309 | }); |
310 | 310 | } |
@@ -324,8 +324,8 @@ discard block |
||
324 | 324 | */ |
325 | 325 | public function sync($type, $fields, $attributes) |
326 | 326 | { |
327 | - if (! empty($this->{$type})) { |
|
328 | - $this->{$type} = array_map(function ($field) use ($fields, $attributes) { |
|
327 | + if (!empty($this->{$type})) { |
|
328 | + $this->{$type} = array_map(function($field) use ($fields, $attributes) { |
|
329 | 329 | if (in_array($field['name'], (array) $fields)) { |
330 | 330 | $field = array_merge($field, $attributes); |
331 | 331 | } |
@@ -355,15 +355,15 @@ discard block |
||
355 | 355 | { |
356 | 356 | $relationArray = explode('.', $relationString); |
357 | 357 | |
358 | - if (! isset($length)) { |
|
358 | + if (!isset($length)) { |
|
359 | 359 | $length = count($relationArray); |
360 | 360 | } |
361 | 361 | |
362 | - if (! isset($model)) { |
|
362 | + if (!isset($model)) { |
|
363 | 363 | $model = $this->model; |
364 | 364 | } |
365 | 365 | |
366 | - $result = array_reduce(array_splice($relationArray, 0, $length), function ($obj, $method) { |
|
366 | + $result = array_reduce(array_splice($relationArray, 0, $length), function($obj, $method) { |
|
367 | 367 | try { |
368 | 368 | $result = $obj->$method(); |
369 | 369 | |
@@ -399,7 +399,7 @@ discard block |
||
399 | 399 | if (is_array($entries)) { |
400 | 400 | //if attribute does not exist in main array we have more than one entry OR the attribute |
401 | 401 | //is an acessor that is not in $appends property of model. |
402 | - if (! isset($entries[$attribute])) { |
|
402 | + if (!isset($entries[$attribute])) { |
|
403 | 403 | //we first check if we don't have the attribute because it's an acessor that is not in appends. |
404 | 404 | if ($model_instance->hasGetMutator($attribute) && isset($entries[$modelKey])) { |
405 | 405 | $entry_in_database = $model_instance->find($entries[$modelKey]); |
@@ -438,21 +438,21 @@ discard block |
||
438 | 438 | */ |
439 | 439 | public function parseTranslatableAttributes($model, $attribute, $value) |
440 | 440 | { |
441 | - if (! method_exists($model, 'isTranslatableAttribute')) { |
|
441 | + if (!method_exists($model, 'isTranslatableAttribute')) { |
|
442 | 442 | return $value; |
443 | 443 | } |
444 | 444 | |
445 | - if (! $model->isTranslatableAttribute($attribute)) { |
|
445 | + if (!$model->isTranslatableAttribute($attribute)) { |
|
446 | 446 | return $value; |
447 | 447 | } |
448 | 448 | |
449 | - if (! is_array($value)) { |
|
449 | + if (!is_array($value)) { |
|
450 | 450 | $decodedAttribute = json_decode($value, true) ?? ($value !== null ? [$value] : []); |
451 | 451 | } else { |
452 | 452 | $decodedAttribute = $value; |
453 | 453 | } |
454 | 454 | |
455 | - if (is_array($decodedAttribute) && ! empty($decodedAttribute)) { |
|
455 | + if (is_array($decodedAttribute) && !empty($decodedAttribute)) { |
|
456 | 456 | if (isset($decodedAttribute[app()->getLocale()])) { |
457 | 457 | return $decodedAttribute[app()->getLocale()]; |
458 | 458 | } else { |
@@ -463,7 +463,7 @@ discard block |
||
463 | 463 | return $value; |
464 | 464 | } |
465 | 465 | |
466 | - public function setLocaleOnModel(Model $model, null|bool|string $useFallbackLocale = null) |
|
466 | + public function setLocaleOnModel(Model $model, null | bool | string $useFallbackLocale = null) |
|
467 | 467 | { |
468 | 468 | $useFallbackLocale = $useFallbackLocale ?? $this->shouldUseFallbackLocale(); |
469 | 469 | |
@@ -493,7 +493,7 @@ discard block |
||
493 | 493 | $relation = $model->{$firstRelationName}; |
494 | 494 | |
495 | 495 | $results = []; |
496 | - if (! is_null($relation)) { |
|
496 | + if (!is_null($relation)) { |
|
497 | 497 | if ($relation instanceof Collection) { |
498 | 498 | $currentResults = $relation->all(); |
499 | 499 | } elseif (is_array($relation)) { |
@@ -506,7 +506,7 @@ discard block |
||
506 | 506 | |
507 | 507 | array_shift($relationArray); |
508 | 508 | |
509 | - if (! empty($relationArray)) { |
|
509 | + if (!empty($relationArray)) { |
|
510 | 510 | foreach ($currentResults as $currentResult) { |
511 | 511 | $results = array_merge_recursive($results, $this->getRelatedEntries($currentResult, implode('.', $relationArray))); |
512 | 512 | } |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | 'operation' => 'list', |
30 | 30 | ]); |
31 | 31 | |
32 | - if (! isset($this->setupDetailsRowRoute) || $this->setupDetailsRowRoute === true) { |
|
32 | + if (!isset($this->setupDetailsRowRoute) || $this->setupDetailsRowRoute === true) { |
|
33 | 33 | Route::get($segment.'/{id}/details', [ |
34 | 34 | 'as' => $routeName.'.showDetailsRow', |
35 | 35 | 'uses' => $controller.'@showDetailsRow', |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | { |
46 | 46 | $this->crud->allowAccess('list'); |
47 | 47 | |
48 | - $this->crud->operation('list', function () { |
|
48 | + $this->crud->operation('list', function() { |
|
49 | 49 | $this->crud->loadDefaultOperationSettingsFromConfig(); |
50 | 50 | $this->setupTranslatorInstance(); |
51 | 51 | }); |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | $search = request()->input('search'); |
84 | 84 | |
85 | 85 | // check if length is allowed by developer |
86 | - if ($length && ! in_array($length, $this->crud->getPageLengthMenu()[0])) { |
|
86 | + if ($length && !in_array($length, $this->crud->getPageLengthMenu()[0])) { |
|
87 | 87 | return response()->json([ |
88 | 88 | 'error' => 'Unknown page length.', |
89 | 89 | ], 400); |
@@ -2,16 +2,16 @@ discard block |
||
2 | 2 | |
3 | 3 | namespace Backpack\CRUD\app\Http\Controllers\Operations\Concerns; |
4 | 4 | |
5 | -if(!method_exists(__CLASS__, 'setupTranslatorInstance')) { |
|
5 | +if (!method_exists(__CLASS__, 'setupTranslatorInstance')) { |
|
6 | 6 | trait HasTranslations |
7 | 7 | { |
8 | 8 | public function setupTranslatorInstance() |
9 | 9 | { |
10 | - if(! method_exists($this->crud->model, 'translationEnabledForModel') || ! class_exists('Spatie\Translatable\Translatable')) { |
|
10 | + if (!method_exists($this->crud->model, 'translationEnabledForModel') || !class_exists('Spatie\Translatable\Translatable')) { |
|
11 | 11 | return; |
12 | 12 | } |
13 | 13 | |
14 | - if(app('crud')->getOperationSetting('useFallbackLocale')) { |
|
14 | + if (app('crud')->getOperationSetting('useFallbackLocale')) { |
|
15 | 15 | app(\Spatie\Translatable\Translatable::class)->fallback( |
16 | 16 | fallbackAny: true, |
17 | 17 | ); |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | } |
20 | 20 | } |
21 | 21 | } |
22 | -}else{ |
|
22 | +} else { |
|
23 | 23 | trait HasTranslations |
24 | 24 | { |
25 | 25 | } |
@@ -19,7 +19,7 @@ |
||
19 | 19 | } |
20 | 20 | } |
21 | 21 | } |
22 | -}else{ |
|
22 | +} else{ |
|
23 | 23 | trait HasTranslations |
24 | 24 | { |
25 | 25 | } |
@@ -32,26 +32,26 @@ |
||
32 | 32 | $this->crud->allowAccess('show'); |
33 | 33 | $this->crud->setOperationSetting('setFromDb', true); |
34 | 34 | |
35 | - $this->crud->operation('show', function () { |
|
35 | + $this->crud->operation('show', function() { |
|
36 | 36 | $this->crud->loadDefaultOperationSettingsFromConfig(); |
37 | 37 | $this->setupTranslatorInstance(); |
38 | 38 | |
39 | - if (! method_exists($this, 'setupShowOperation')) { |
|
39 | + if (!method_exists($this, 'setupShowOperation')) { |
|
40 | 40 | $this->autoSetupShowOperation(); |
41 | 41 | } |
42 | 42 | }); |
43 | 43 | |
44 | - $this->crud->operation('list', function () { |
|
44 | + $this->crud->operation('list', function() { |
|
45 | 45 | $this->crud->addButton('line', 'show', 'view', 'crud::buttons.show', 'beginning'); |
46 | 46 | }); |
47 | 47 | |
48 | - $this->crud->operation(['create', 'update'], function () { |
|
48 | + $this->crud->operation(['create', 'update'], function() { |
|
49 | 49 | $this->crud->addSaveAction([ |
50 | 50 | 'name' => 'save_and_preview', |
51 | - 'visible' => function ($crud) { |
|
51 | + 'visible' => function($crud) { |
|
52 | 52 | return $crud->hasAccess('show'); |
53 | 53 | }, |
54 | - 'redirect' => function ($crud, $request, $itemId = null) { |
|
54 | + 'redirect' => function($crud, $request, $itemId = null) { |
|
55 | 55 | $itemId = $itemId ?: $request->input('id'); |
56 | 56 | $redirectUrl = $crud->route.'/'.$itemId.'/show'; |
57 | 57 | if ($request->has('_locale')) { |