We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -30,25 +30,25 @@ |
||
30 | 30 | $this->crud->allowAccess('show'); |
31 | 31 | $this->crud->setOperationSetting('setFromDb', true); |
32 | 32 | |
33 | - $this->crud->operation('show', function () { |
|
33 | + $this->crud->operation('show', function() { |
|
34 | 34 | $this->crud->loadDefaultOperationSettingsFromConfig(); |
35 | 35 | |
36 | - if (! method_exists($this, 'setupShowOperation')) { |
|
36 | + if (!method_exists($this, 'setupShowOperation')) { |
|
37 | 37 | $this->autoSetupShowOperation(); |
38 | 38 | } |
39 | 39 | }); |
40 | 40 | |
41 | - $this->crud->operation('list', function () { |
|
41 | + $this->crud->operation('list', function() { |
|
42 | 42 | $this->crud->addButton('line', 'show', 'view', 'crud::buttons.show', 'beginning'); |
43 | 43 | }); |
44 | 44 | |
45 | - $this->crud->operation(['create', 'update'], function () { |
|
45 | + $this->crud->operation(['create', 'update'], function() { |
|
46 | 46 | $this->crud->addSaveAction([ |
47 | 47 | 'name' => 'save_and_preview', |
48 | - 'visible' => function ($crud) { |
|
48 | + 'visible' => function($crud) { |
|
49 | 49 | return $crud->hasAccess('show'); |
50 | 50 | }, |
51 | - 'redirect' => function ($crud, $request, $itemId = null) { |
|
51 | + 'redirect' => function($crud, $request, $itemId = null) { |
|
52 | 52 | $itemId = $itemId ?: $request->input('id'); |
53 | 53 | $redirectUrl = $crud->route.'/'.$itemId.'/show'; |
54 | 54 | if ($request->has('_locale')) { |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | [$conn, $table] = self::getConnectionAndTable(); |
68 | 68 | |
69 | 69 | // MongoDB columns are alway nullable |
70 | - if (! in_array($conn->getConfig()['driver'], CRUD::getSqlDriverList())) { |
|
70 | + if (!in_array($conn->getConfig()['driver'], CRUD::getSqlDriverList())) { |
|
71 | 71 | return true; |
72 | 72 | } |
73 | 73 | |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | // check for NOT NULL |
78 | 78 | $notNull = $column->getNotnull(); |
79 | 79 | // return the value of nullable (aka the inverse of NOT NULL) |
80 | - return ! $notNull; |
|
80 | + return !$notNull; |
|
81 | 81 | } catch (\Exception $e) { |
82 | 82 | return true; |
83 | 83 | } |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | [$conn, $table] = self::getConnectionAndTable(); |
95 | 95 | |
96 | 96 | // MongoDB columns don't have default values |
97 | - if (! in_array($conn->getConfig()['driver'], CRUD::getSqlDriverList())) { |
|
97 | + if (!in_array($conn->getConfig()['driver'], CRUD::getSqlDriverList())) { |
|
98 | 98 | return false; |
99 | 99 | } |
100 | 100 |
@@ -29,10 +29,10 @@ discard block |
||
29 | 29 | // construct the validation rules array |
30 | 30 | // (eg. ['name' => 'required|min:2']) |
31 | 31 | $rules = collect($fields) |
32 | - ->filter(function ($value, $key) { |
|
32 | + ->filter(function($value, $key) { |
|
33 | 33 | // only keep fields where 'validationRules' attribute is defined |
34 | 34 | return array_key_exists('validationRules', $value); |
35 | - })->map(function ($item, $key) { |
|
35 | + })->map(function($item, $key) { |
|
36 | 36 | // only keep the rules, not the entire field definition |
37 | 37 | return $item['validationRules']; |
38 | 38 | })->toArray(); |
@@ -41,10 +41,10 @@ discard block |
||
41 | 41 | // (eg. ['title.required' => 'You gotta write smth man.']) |
42 | 42 | $messages = []; |
43 | 43 | collect($fields) |
44 | - ->filter(function ($value, $key) { |
|
44 | + ->filter(function($value, $key) { |
|
45 | 45 | // only keep fields where 'validationMessages' attribute is defined |
46 | 46 | return array_key_exists('validationMessages', $value); |
47 | - })->each(function ($item, $key) use (&$messages) { |
|
47 | + })->each(function($item, $key) use (&$messages) { |
|
48 | 48 | foreach ($item['validationMessages'] as $rule => $message) { |
49 | 49 | $messages[$key.'.'.$rule] = $message; |
50 | 50 | } |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | */ |
75 | 75 | public function setValidation($classOrRulesArray = false, $messages = []) |
76 | 76 | { |
77 | - if (! $classOrRulesArray) { |
|
77 | + if (!$classOrRulesArray) { |
|
78 | 78 | $this->setValidationFromFields(); |
79 | 79 | } elseif (is_array($classOrRulesArray)) { |
80 | 80 | $this->setValidationFromArray($classOrRulesArray, $messages); |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | */ |
203 | 203 | public function isRequired($inputKey) |
204 | 204 | { |
205 | - if (! $this->hasOperationSetting('requiredFields')) { |
|
205 | + if (!$this->hasOperationSetting('requiredFields')) { |
|
206 | 206 | return false; |
207 | 207 | } |
208 | 208 |
@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | <?php |
4 | 4 | $max = isset($field['max']) && (int) $field['max'] > 0 ? $field['max'] : -1; |
5 | 5 | $min = isset($field['min']) && (int) $field['min'] > 0 ? $field['min'] : -1; |
6 | - $item_name = strtolower(isset($field['entity_singular']) && ! empty($field['entity_singular']) ? $field['entity_singular'] : $field['label']); |
|
6 | + $item_name = strtolower(isset($field['entity_singular']) && !empty($field['entity_singular']) ? $field['entity_singular'] : $field['label']); |
|
7 | 7 | |
8 | 8 | $items = old_empty_or_null($field['name'], '') ?? $field['value'] ?? $field['default'] ?? ''; |
9 | 9 | |
@@ -15,12 +15,12 @@ discard block |
||
15 | 15 | } else { |
16 | 16 | $items = '[]'; |
17 | 17 | } |
18 | - } elseif (is_string($items) && ! is_array(json_decode($items))) { |
|
18 | + } elseif (is_string($items) && !is_array(json_decode($items))) { |
|
19 | 19 | $items = '[]'; |
20 | 20 | } |
21 | 21 | |
22 | 22 | // make sure columns are defined |
23 | - if (! isset($field['columns'])) { |
|
23 | + if (!isset($field['columns'])) { |
|
24 | 24 | $field['columns'] = ['value' => 'Value']; |
25 | 25 | } |
26 | 26 |
@@ -3,11 +3,11 @@ discard block |
||
3 | 3 | <?php |
4 | 4 | // if the column has been cast to Carbon or Date (using attribute casting) |
5 | 5 | // get the value as a date string |
6 | - if (! function_exists('formatDate')) { |
|
6 | + if (!function_exists('formatDate')) { |
|
7 | 7 | function formatDate($entry, $dateFieldName) |
8 | 8 | { |
9 | 9 | $formattedDate = null; |
10 | - if (isset($entry) && ! empty($entry->{$dateFieldName})) { |
|
10 | + if (isset($entry) && !empty($entry->{$dateFieldName})) { |
|
11 | 11 | $dateField = $entry->{$dateFieldName}; |
12 | 12 | if ($dateField instanceof \Carbon\CarbonInterface) { |
13 | 13 | $formattedDate = $dateField->format('Y-m-d H:i:s'); |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | } |
22 | 22 | |
23 | 23 | if (isset($field['value'])) { |
24 | - if (isset($entry) && ! is_array($field['value'])) { |
|
24 | + if (isset($entry) && !is_array($field['value'])) { |
|
25 | 25 | $start_value = formatDate($entry, $field['name'][0]); |
26 | 26 | $end_value = formatDate($entry, $field['name'][1]); |
27 | 27 | } elseif (is_array($field['value'])) { // gets here when inside repeatable |
@@ -21,9 +21,9 @@ discard block |
||
21 | 21 | */ |
22 | 22 | public function applySearchTerm($searchTerm) |
23 | 23 | { |
24 | - return $this->query->where(function ($query) use ($searchTerm) { |
|
24 | + return $this->query->where(function($query) use ($searchTerm) { |
|
25 | 25 | foreach ($this->columns() as $column) { |
26 | - if (! isset($column['type'])) { |
|
26 | + if (!isset($column['type'])) { |
|
27 | 27 | abort(400, 'Missing column type when trying to apply search term.'); |
28 | 28 | } |
29 | 29 | |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | |
82 | 82 | case 'select': |
83 | 83 | case 'select_multiple': |
84 | - $query->orWhereHas($column['entity'], function ($q) use ($column, $searchTerm) { |
|
84 | + $query->orWhereHas($column['entity'], function($q) use ($column, $searchTerm) { |
|
85 | 85 | $q->where($this->getColumnWithTableNamePrefixed($q, $column['attribute']), 'like', '%'.$searchTerm.'%'); |
86 | 86 | }); |
87 | 87 | break; |
@@ -270,13 +270,13 @@ discard block |
||
270 | 270 | if (isset($column['type'])) { |
271 | 271 | // create a list of paths to column blade views |
272 | 272 | // including the configured view_namespaces |
273 | - $columnPaths = array_map(function ($item) use ($column) { |
|
273 | + $columnPaths = array_map(function($item) use ($column) { |
|
274 | 274 | return $item.'.'.$column['type']; |
275 | 275 | }, config('backpack.crud.view_namespaces.columns')); |
276 | 276 | |
277 | 277 | // but always fall back to the stock 'text' column |
278 | 278 | // if a view doesn't exist |
279 | - if (! in_array('crud::columns.text', $columnPaths)) { |
|
279 | + if (!in_array('crud::columns.text', $columnPaths)) { |
|
280 | 280 | $columnPaths[] = 'crud::columns.text'; |
281 | 281 | } |
282 | 282 | |
@@ -303,7 +303,7 @@ discard block |
||
303 | 303 | */ |
304 | 304 | private function renderCellView($view, $column, $entry, $rowNumber = false) |
305 | 305 | { |
306 | - if (! view()->exists($view)) { |
|
306 | + if (!view()->exists($view)) { |
|
307 | 307 | $view = 'crud::columns.text'; // fallback to text column |
308 | 308 | } |
309 | 309 |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | { |
275 | 275 | $type = $this->name; |
276 | 276 | |
277 | - $paths = array_map(function ($item) use ($type) { |
|
277 | + $paths = array_map(function($item) use ($type) { |
|
278 | 278 | return $item.'.'.$type; |
279 | 279 | }, config('backpack.crud.view_namespaces.buttons')); |
280 | 280 | |
@@ -440,7 +440,7 @@ discard block |
||
440 | 440 | { |
441 | 441 | $itemExists = $this->collection()->contains('name', $this->name); |
442 | 442 | |
443 | - if (! $itemExists) { |
|
443 | + if (!$itemExists) { |
|
444 | 444 | if ($this->position == 'beginning') { |
445 | 445 | $this->collection()->prepend($this); |
446 | 446 | } else { |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | */ |
85 | 85 | public function wasNotApplied() |
86 | 86 | { |
87 | - return ! $this->applied; |
|
87 | + return !$this->applied; |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | /** |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | |
106 | 106 | $input = $input ?? new ParameterBag($this->crud()->getRequest()->all()); |
107 | 107 | |
108 | - if (! $input->has($this->name)) { |
|
108 | + if (!$input->has($this->name)) { |
|
109 | 109 | // if fallback logic was supplied and is a closure |
110 | 110 | if (is_callable($this->fallbackLogic)) { |
111 | 111 | return ($this->fallbackLogic)(); |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | { |
143 | 143 | $type = $this->type; |
144 | 144 | |
145 | - return array_map(function ($item) use ($type) { |
|
145 | + return array_map(function($item) use ($type) { |
|
146 | 146 | return $item.'.'.$type; |
147 | 147 | }, config('backpack.crud.view_namespaces.filters')); |
148 | 148 | } |
@@ -304,7 +304,7 @@ discard block |
||
304 | 304 | */ |
305 | 305 | public function values($value) |
306 | 306 | { |
307 | - $this->values = (! is_string($value) && is_callable($value)) ? $value() : $value; |
|
307 | + $this->values = (!is_string($value) && is_callable($value)) ? $value() : $value; |
|
308 | 308 | |
309 | 309 | return $this->save(); |
310 | 310 | } |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | } |
135 | 135 | |
136 | 136 | $type = $this->type; |
137 | - $paths = array_map(function ($item) use ($type) { |
|
137 | + $paths = array_map(function($item) use ($type) { |
|
138 | 138 | return $item.'.'.$type; |
139 | 139 | }, config('backpack.base.component_view_namespaces.widgets')); |
140 | 140 | |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | { |
228 | 228 | $itemExists = $this->collection()->contains('name', $this->attributes['name']); |
229 | 229 | |
230 | - if (! $itemExists) { |
|
230 | + if (!$itemExists) { |
|
231 | 231 | $this->collection()->put($this->attributes['name'], $this); |
232 | 232 | } else { |
233 | 233 | $this->collection()[$this->name] = $this; |