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', ['developer-error-exception']); |
120 | 120 | } |
121 | 121 | |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | } |
194 | 194 | // if there's a model defined, but no attribute |
195 | 195 | // guess an attribute using the identifiableAttribute functionality in CrudTrait |
196 | - if (isset($field['model']) && ! isset($field['attribute']) && method_exists($field['model'], 'identifiableAttribute')) { |
|
196 | + if (isset($field['model']) && !isset($field['attribute']) && method_exists($field['model'], 'identifiableAttribute')) { |
|
197 | 197 | $field['attribute'] = (new $field['model']())->identifiableAttribute(); |
198 | 198 | } |
199 | 199 | |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | */ |
210 | 210 | protected function makeSureFieldHasLabel($field) |
211 | 211 | { |
212 | - if (! isset($field['label'])) { |
|
212 | + if (!isset($field['label'])) { |
|
213 | 213 | $name = str_replace(',', ' ', $field['name']); |
214 | 214 | $name = str_replace('_id', '', $name); |
215 | 215 | $field['label'] = mb_ucfirst(str_replace('_', ' ', $name)); |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | */ |
228 | 228 | protected function makeSureFieldHasType($field) |
229 | 229 | { |
230 | - if (! isset($field['type'])) { |
|
230 | + if (!isset($field['type'])) { |
|
231 | 231 | $field['type'] = isset($field['relation_type']) ? $this->inferFieldTypeFromRelationType($field['relation_type']) : $this->inferFieldTypeFromDbColumnType($field['name']); |
232 | 232 | } |
233 | 233 | |
@@ -260,16 +260,16 @@ discard block |
||
260 | 260 | */ |
261 | 261 | protected function makeSureSubfieldsHaveNecessaryAttributes($field) |
262 | 262 | { |
263 | - if (! isset($field['subfields']) || ! is_array($field['subfields'])) { |
|
263 | + if (!isset($field['subfields']) || !is_array($field['subfields'])) { |
|
264 | 264 | return $field; |
265 | 265 | } |
266 | 266 | |
267 | - if (! is_multidimensional_array($field['subfields'], true)) { |
|
267 | + if (!is_multidimensional_array($field['subfields'], true)) { |
|
268 | 268 | abort(500, 'Subfields of «'.$field['name'].'» are malformed. Make sure you provide an array of subfields.', ['developer-error-exception']); |
269 | 269 | } |
270 | 270 | |
271 | 271 | foreach ($field['subfields'] as $key => $subfield) { |
272 | - if (empty($subfield) || ! isset($subfield['name'])) { |
|
272 | + if (empty($subfield) || !isset($subfield['name'])) { |
|
273 | 273 | abort(500, 'A subfield of «'.$field['name'].'» is malformed. Subfield attribute name can\'t be empty.', ['developer-error-exception']); |
274 | 274 | } |
275 | 275 | |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | |
283 | 283 | $subfield['parentFieldName'] = $field['name']; |
284 | 284 | |
285 | - if (! isset($field['model'])) { |
|
285 | + if (!isset($field['model'])) { |
|
286 | 286 | // we're inside a simple 'repeatable' with no model/relationship, so |
287 | 287 | // we assume all subfields are supposed to be text fields |
288 | 288 | $subfield['type'] = $subfield['type'] ?? 'text'; |
@@ -309,11 +309,11 @@ discard block |
||
309 | 309 | case 'BelongsToMany': |
310 | 310 | $pivotSelectorField = static::getPivotFieldStructure($field); |
311 | 311 | |
312 | - $pivot = Arr::where($field['subfields'], function ($item) use ($pivotSelectorField) { |
|
312 | + $pivot = Arr::where($field['subfields'], function($item) use ($pivotSelectorField) { |
|
313 | 313 | return $item['name'] === $pivotSelectorField['name']; |
314 | 314 | }); |
315 | 315 | |
316 | - if (! empty($pivot)) { |
|
316 | + if (!empty($pivot)) { |
|
317 | 317 | break; |
318 | 318 | } |
319 | 319 | |
@@ -337,11 +337,11 @@ discard block |
||
337 | 337 | $entity = isset($field['baseEntity']) ? $field['baseEntity'].'.'.$field['entity'] : $field['entity']; |
338 | 338 | $relationInstance = $this->getRelationInstance(['entity' => $entity]); |
339 | 339 | |
340 | - $localKeyField = Arr::where($field['subfields'], function ($item) use ($relationInstance) { |
|
340 | + $localKeyField = Arr::where($field['subfields'], function($item) use ($relationInstance) { |
|
341 | 341 | return $item['name'] === $relationInstance->getRelated()->getKeyName(); |
342 | 342 | }); |
343 | 343 | |
344 | - if (! empty($localKeyField)) { |
|
344 | + if (!empty($localKeyField)) { |
|
345 | 345 | break; |
346 | 346 | } |
347 | 347 | |
@@ -366,7 +366,7 @@ discard block |
||
366 | 366 | { |
367 | 367 | // if a tab was mentioned, we should enable it |
368 | 368 | if (isset($field['tab'])) { |
369 | - if (! $this->tabsEnabled()) { |
|
369 | + if (!$this->tabsEnabled()) { |
|
370 | 370 | $this->enableTabs(); |
371 | 371 | } |
372 | 372 | } |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | $otherButtons = collect([]); |
25 | 25 | |
26 | 26 | // we get the buttons that belong to the specified stack |
27 | - $stackButtons = $this->buttons()->reject(function ($item) use ($stack, $otherButtons) { |
|
27 | + $stackButtons = $this->buttons()->reject(function($item) use ($stack, $otherButtons) { |
|
28 | 28 | if ($item->stack != $stack) { |
29 | 29 | // if the button does not belong to this stack we just add it for merging later |
30 | 30 | $otherButtons->push($item); |
@@ -36,8 +36,8 @@ discard block |
||
36 | 36 | }); |
37 | 37 | |
38 | 38 | // we parse the ordered buttons |
39 | - collect($order)->each(function ($btnKey) use ($newButtons, $stackButtons) { |
|
40 | - if (! $button = $stackButtons->where('name', $btnKey)->first()) { |
|
39 | + collect($order)->each(function($btnKey) use ($newButtons, $stackButtons) { |
|
40 | + if (!$button = $stackButtons->where('name', $btnKey)->first()) { |
|
41 | 41 | abort(500, 'Button name [«'.$btnKey.'»] not found.', ['developer-error-exception']); |
42 | 42 | } |
43 | 43 | $newButtons->push($button); |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | // we add the remaining buttons to the end of the ordered ones |
48 | 48 | if (count($newButtons) < count($stackButtons)) { |
49 | 49 | foreach ($stackButtons as $button) { |
50 | - if (! $newButtons->where('name', $button->name)->first()) { |
|
50 | + if (!$newButtons->where('name', $button->name)->first()) { |
|
51 | 51 | $newButtons->push($button); |
52 | 52 | } |
53 | 53 | } |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | */ |
117 | 117 | $button = $this->buttons()->firstWhere('name', $name); |
118 | 118 | |
119 | - if (! $button) { |
|
119 | + if (!$button) { |
|
120 | 120 | abort(500, 'CRUD Button "'.$name.'" not found. Please ensure the button exists before you modify it.', ['developer-error-exception']); |
121 | 121 | } |
122 | 122 | |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | */ |
138 | 138 | public function removeButton($name, $stack = null) |
139 | 139 | { |
140 | - $this->setOperationSetting('buttons', $this->buttons()->reject(function ($button) use ($name, $stack) { |
|
140 | + $this->setOperationSetting('buttons', $this->buttons()->reject(function($button) use ($name, $stack) { |
|
141 | 141 | return $stack == null ? $button->name == $name : ($button->stack == $stack) && ($button->name == $name); |
142 | 142 | })); |
143 | 143 | } |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | */ |
149 | 149 | public function removeButtons($names, $stack = null) |
150 | 150 | { |
151 | - if (! empty($names)) { |
|
151 | + if (!empty($names)) { |
|
152 | 152 | foreach ($names as $name) { |
153 | 153 | $this->removeButton($name, $stack); |
154 | 154 | } |
@@ -162,14 +162,14 @@ discard block |
||
162 | 162 | |
163 | 163 | public function removeAllButtonsFromStack($stack) |
164 | 164 | { |
165 | - $this->setOperationSetting('buttons', $this->buttons()->reject(function ($button) use ($stack) { |
|
165 | + $this->setOperationSetting('buttons', $this->buttons()->reject(function($button) use ($stack) { |
|
166 | 166 | return $button->stack == $stack; |
167 | 167 | })); |
168 | 168 | } |
169 | 169 | |
170 | 170 | public function removeButtonFromStack($name, $stack) |
171 | 171 | { |
172 | - $this->setOperationSetting('buttons', $this->buttons()->reject(function ($button) use ($name, $stack) { |
|
172 | + $this->setOperationSetting('buttons', $this->buttons()->reject(function($button) use ($name, $stack) { |
|
173 | 173 | return $button->name == $name && $button->stack == $stack; |
174 | 174 | })); |
175 | 175 | } |
@@ -190,15 +190,15 @@ discard block |
||
190 | 190 | $destinationKey = $this->getButtonKey($destination); |
191 | 191 | $newDestinationKey = ($where == 'before' ? $destinationKey : $destinationKey + 1); |
192 | 192 | |
193 | - $newButtons = $this->buttons()->filter(function ($value, $key) use ($target) { |
|
193 | + $newButtons = $this->buttons()->filter(function($value, $key) use ($target) { |
|
194 | 194 | return $value->name != $target; |
195 | 195 | }); |
196 | 196 | |
197 | - if (! $targetButton) { |
|
197 | + if (!$targetButton) { |
|
198 | 198 | return; |
199 | 199 | } |
200 | 200 | |
201 | - if (! $destinationButton) { |
|
201 | + if (!$destinationButton) { |
|
202 | 202 | return; |
203 | 203 | } |
204 | 204 | |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | |
208 | 208 | $newButtons = $firstSlice->push($targetButton); |
209 | 209 | |
210 | - $lastSlice->each(function ($item, $key) use ($newButtons) { |
|
210 | + $lastSlice->each(function($item, $key) use ($newButtons) { |
|
211 | 211 | $newButtons->push($item); |
212 | 212 | }); |
213 | 213 | |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | /** |
267 | 267 | * Add a new button to the current CRUD operation. |
268 | 268 | */ |
269 | - public function button(string|array $nameOrAttributes): CrudButton |
|
269 | + public function button(string | array $nameOrAttributes): CrudButton |
|
270 | 270 | { |
271 | 271 | return new CrudButton($nameOrAttributes); |
272 | 272 | } |
@@ -22,9 +22,9 @@ discard block |
||
22 | 22 | */ |
23 | 23 | public function applySearchTerm($searchTerm) |
24 | 24 | { |
25 | - return $this->query->where(function ($query) use ($searchTerm) { |
|
25 | + return $this->query->where(function($query) use ($searchTerm) { |
|
26 | 26 | foreach ($this->columns() as $column) { |
27 | - if (! isset($column['type'])) { |
|
27 | + if (!isset($column['type'])) { |
|
28 | 28 | abort(500, 'Missing column type when trying to apply search term.', ['developer-error-exception']); |
29 | 29 | } |
30 | 30 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | |
85 | 85 | case 'select': |
86 | 86 | case 'select_multiple': |
87 | - $query->orWhereHas($column['entity'], function ($q) use ($column, $searchTerm, $searchOperator) { |
|
87 | + $query->orWhereHas($column['entity'], function($q) use ($column, $searchTerm, $searchOperator) { |
|
88 | 88 | $q->where($this->getColumnWithTableNamePrefixed($q, $column['attribute']), $searchOperator, '%'.$searchTerm.'%'); |
89 | 89 | }); |
90 | 90 | break; |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | $column_direction = (strtolower((string) $order['dir']) == 'asc' ? 'ASC' : 'DESC'); |
109 | 109 | $column = $this->findColumnById($column_number); |
110 | 110 | |
111 | - if ($column['tableColumn'] && ! isset($column['orderLogic'])) { |
|
111 | + if ($column['tableColumn'] && !isset($column['orderLogic'])) { |
|
112 | 112 | if (method_exists($this->model, 'translationEnabled') && |
113 | 113 | $this->model->translationEnabled() && |
114 | 114 | $this->model->isTranslatableAttribute($column['name']) && |
@@ -136,12 +136,12 @@ discard block |
||
136 | 136 | $key = $this->model->getKeyName(); |
137 | 137 | $groupBy = $this->query->toBase()->groups; |
138 | 138 | |
139 | - $hasOrderByPrimaryKey = collect($orderBy)->some(function ($item) use ($key, $table) { |
|
139 | + $hasOrderByPrimaryKey = collect($orderBy)->some(function($item) use ($key, $table) { |
|
140 | 140 | return (isset($item['column']) && $item['column'] === $key) |
141 | 141 | || (isset($item['sql']) && str_contains($item['sql'], "$table.$key")); |
142 | 142 | }); |
143 | 143 | |
144 | - if (! $hasOrderByPrimaryKey && empty($groupBy)) { |
|
144 | + if (!$hasOrderByPrimaryKey && empty($groupBy)) { |
|
145 | 145 | $this->orderByWithPrefix($key, 'DESC'); |
146 | 146 | } |
147 | 147 | } |
@@ -320,13 +320,13 @@ discard block |
||
320 | 320 | if (isset($column['type'])) { |
321 | 321 | // create a list of paths to column blade views |
322 | 322 | // including the configured view_namespaces |
323 | - $columnPaths = array_map(function ($item) use ($column) { |
|
323 | + $columnPaths = array_map(function($item) use ($column) { |
|
324 | 324 | return $item.'.'.$column['type']; |
325 | 325 | }, ViewNamespaces::getFor('columns')); |
326 | 326 | |
327 | 327 | // but always fall back to the stock 'text' column |
328 | 328 | // if a view doesn't exist |
329 | - if (! in_array('crud::columns.text', $columnPaths)) { |
|
329 | + if (!in_array('crud::columns.text', $columnPaths)) { |
|
330 | 330 | $columnPaths[] = 'crud::columns.text'; |
331 | 331 | } |
332 | 332 | |
@@ -365,7 +365,7 @@ discard block |
||
365 | 365 | */ |
366 | 366 | private function renderCellView($view, $column, $entry, $rowNumber = false) |
367 | 367 | { |
368 | - if (! view()->exists($view)) { |
|
368 | + if (!view()->exists($view)) { |
|
369 | 369 | $view = 'crud::columns.text'; // fallback to text column |
370 | 370 | } |
371 | 371 |
@@ -6,7 +6,7 @@ |
||
6 | 6 | { |
7 | 7 | public array $hooks = []; |
8 | 8 | |
9 | - public static function register(string $hook, string|array $operations, callable $callback): void |
|
9 | + public static function register(string $hook, string | array $operations, callable $callback): void |
|
10 | 10 | { |
11 | 11 | $operations = is_array($operations) ? $operations : [$operations]; |
12 | 12 |
@@ -40,24 +40,24 @@ |
||
40 | 40 | // Access |
41 | 41 | $this->crud->allowAccess($operationName); |
42 | 42 | |
43 | - BackpackHooks::register(OperationHooks::SETUP_OPERATION_FROM_CONFIG, $operationName, function () use ($operationName) { |
|
43 | + BackpackHooks::register(OperationHooks::SETUP_OPERATION_FROM_CONFIG, $operationName, function() use ($operationName) { |
|
44 | 44 | return config()->has('backpack.operations.'.$operationName) ? 'backpack.operations.'.$operationName : 'backpack.operations.form'; |
45 | 45 | }); |
46 | 46 | |
47 | - BackpackHooks::register(OperationHooks::BEFORE_OPERATION_SETUP, $operationName, function () use ($operationName) { |
|
47 | + BackpackHooks::register(OperationHooks::BEFORE_OPERATION_SETUP, $operationName, function() use ($operationName) { |
|
48 | 48 | $this->crud->addSaveAction([ |
49 | 49 | 'name' => 'save_and_back', |
50 | - 'visible' => function ($crud) use ($operationName) { |
|
50 | + 'visible' => function($crud) use ($operationName) { |
|
51 | 51 | return $crud->hasAccess($operationName); |
52 | 52 | }, |
53 | - 'redirect' => function ($crud, $request, $itemId = null) { |
|
53 | + 'redirect' => function($crud, $request, $itemId = null) { |
|
54 | 54 | return $request->request->has('_http_referrer') ? $request->request->get('_http_referrer') : $crud->route; |
55 | 55 | }, |
56 | 56 | 'button_text' => trans('backpack::crud.save_action_save_and_back'), |
57 | 57 | ]); |
58 | 58 | }); |
59 | 59 | |
60 | - BackpackHooks::register(OperationHooks::BEFORE_OPERATION_SETUP, ['list', 'show'], function () use ($operationName, $buttonStack, $buttonMeta) { |
|
60 | + BackpackHooks::register(OperationHooks::BEFORE_OPERATION_SETUP, ['list', 'show'], function() use ($operationName, $buttonStack, $buttonMeta) { |
|
61 | 61 | $this->crud->button($operationName)->view('crud::buttons.quick')->stack($buttonStack)->meta($buttonMeta); |
62 | 62 | }); |
63 | 63 | } |
@@ -37,11 +37,11 @@ |
||
37 | 37 | { |
38 | 38 | $this->crud->allowAccess('create'); |
39 | 39 | |
40 | - BackpackHooks::register(OperationHooks::BEFORE_OPERATION_SETUP, 'create', function () { |
|
40 | + BackpackHooks::register(OperationHooks::BEFORE_OPERATION_SETUP, 'create', function() { |
|
41 | 41 | $this->crud->setupDefaultSaveActions(); |
42 | 42 | }); |
43 | 43 | |
44 | - BackpackHooks::register(OperationHooks::BEFORE_OPERATION_SETUP, 'list', function () { |
|
44 | + BackpackHooks::register(OperationHooks::BEFORE_OPERATION_SETUP, 'list', function() { |
|
45 | 45 | $this->crud->addButton('top', 'create', 'view', 'crud::buttons.create'); |
46 | 46 | }); |
47 | 47 | } |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | // |
38 | 38 | // It's done inside a middleware closure in order to have |
39 | 39 | // the complete request inside the CrudPanel object. |
40 | - $this->middleware(function ($request, $next) { |
|
40 | + $this->middleware(function($request, $next) { |
|
41 | 41 | $this->crud = app('crud'); |
42 | 42 | |
43 | 43 | $this->crud->setRequest($request); |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | protected function setupConfigurationForCurrentOperation() |
103 | 103 | { |
104 | 104 | $operationName = $this->crud->getCurrentOperation(); |
105 | - if (! $operationName) { |
|
105 | + if (!$operationName) { |
|
106 | 106 | return; |
107 | 107 | } |
108 | 108 | |
@@ -118,8 +118,8 @@ discard block |
||
118 | 118 | * you'd like the defaults to be applied before anything you write. That way, anything you |
119 | 119 | * write is done after the default, so you can remove default settings, etc; |
120 | 120 | */ |
121 | - if (! BackpackHooks::has(OperationHooks::SETUP_OPERATION_FROM_CONFIG, $operationName)) { |
|
122 | - BackpackHooks::register(OperationHooks::SETUP_OPERATION_FROM_CONFIG, $operationName, function () { |
|
121 | + if (!BackpackHooks::has(OperationHooks::SETUP_OPERATION_FROM_CONFIG, $operationName)) { |
|
122 | + BackpackHooks::register(OperationHooks::SETUP_OPERATION_FROM_CONFIG, $operationName, function() { |
|
123 | 123 | $this->crud->loadDefaultOperationSettingsFromConfig(); |
124 | 124 | }); |
125 | 125 | } |