We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -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.'); |
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.'); |
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 | } |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | public bool $implicit = true; |
27 | 27 | |
28 | - public static function field(string|array|ValidationRule|Rule $rules = []): self |
|
28 | + public static function field(string | array | ValidationRule | Rule $rules = []): self |
|
29 | 29 | { |
30 | 30 | $instance = new static(); |
31 | 31 | $instance->fieldRules = self::getRulesAsArray($rules); |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | |
75 | 75 | public function getFieldRules(): array |
76 | 76 | { |
77 | - return tap($this->fieldRules, function ($rule) { |
|
77 | + return tap($this->fieldRules, function($rule) { |
|
78 | 78 | if (is_a($rule, BackpackCustomRule::class, true)) { |
79 | 79 | $rule = $rule->getFieldRules(); |
80 | 80 | } |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | $rules = explode('|', $rules); |
90 | 90 | } |
91 | 91 | |
92 | - if (! is_array($rules)) { |
|
92 | + if (!is_array($rules)) { |
|
93 | 93 | $rules = [$rules]; |
94 | 94 | } |
95 | 95 |
@@ -9,7 +9,7 @@ |
||
9 | 9 | { |
10 | 10 | public array $fileRules; |
11 | 11 | |
12 | - public function file(string|array|ValidationRule|Rule $rules): self |
|
12 | + public function file(string | array | ValidationRule | Rule $rules): self |
|
13 | 13 | { |
14 | 14 | $this->fileRules = self::getRulesAsArray($rules); |
15 | 15 |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | */ |
24 | 24 | public function validate(string $attribute, mixed $value, Closure $fail): void |
25 | 25 | { |
26 | - if (! $value = self::ensureValidValue($value)) { |
|
26 | + if (!$value = self::ensureValidValue($value)) { |
|
27 | 27 | $fail('Unable to determine the value type.'); |
28 | 28 | |
29 | 29 | return; |
@@ -33,12 +33,12 @@ discard block |
||
33 | 33 | $this->validateItems($attribute, $value, $fail); |
34 | 34 | } |
35 | 35 | |
36 | - public static function field(string|array|ValidationRule|Rule $rules = []): self |
|
36 | + public static function field(string | array | ValidationRule | Rule $rules = []): self |
|
37 | 37 | { |
38 | 38 | $instance = new static(); |
39 | 39 | $instance->fieldRules = self::getRulesAsArray($rules); |
40 | 40 | |
41 | - if (! in_array('array', $instance->getFieldRules())) { |
|
41 | + if (!in_array('array', $instance->getFieldRules())) { |
|
42 | 42 | $instance->fieldRules[] = 'array'; |
43 | 43 | } |
44 | 44 | |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | } |
64 | 64 | } |
65 | 65 | |
66 | - protected function validateArrayData(string $attribute, Closure $fail, null|array $data = null, null|array $rules = null): void |
|
66 | + protected function validateArrayData(string $attribute, Closure $fail, null | array $data = null, null | array $rules = null): void |
|
67 | 67 | { |
68 | 68 | $data = $data ?? $this->data; |
69 | 69 | $rules = $rules ?? $this->getFieldRules(); |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | |
82 | 82 | protected static function ensureValidValue($value) |
83 | 83 | { |
84 | - if (! is_array($value)) { |
|
84 | + if (!is_array($value)) { |
|
85 | 85 | try { |
86 | 86 | $value = json_decode($value, true); |
87 | 87 | } catch (\Exception $e) { |
@@ -95,7 +95,6 @@ discard block |
||
95 | 95 | private function getValidationAttributeString($attribute) |
96 | 96 | { |
97 | 97 | return Str::substrCount($attribute, '.') > 1 ? |
98 | - Str::before($attribute, '.').'.*.'.Str::afterLast($attribute, '.') : |
|
99 | - $attribute; |
|
98 | + Str::before($attribute, '.').'.*.'.Str::afterLast($attribute, '.') : $attribute; |
|
100 | 99 | } |
101 | 100 | } |
@@ -17,7 +17,7 @@ |
||
17 | 17 | */ |
18 | 18 | public function validate(string $attribute, mixed $value, Closure $fail): void |
19 | 19 | { |
20 | - if (! $value = self::ensureValidValue($value)) { |
|
20 | + if (!$value = self::ensureValidValue($value)) { |
|
21 | 21 | $fail('Unable to determine the value type.'); |
22 | 22 | |
23 | 23 | return; |
@@ -25,13 +25,13 @@ discard block |
||
25 | 25 | { |
26 | 26 | $entry = CrudPanelFacade::getCurrentEntry(); |
27 | 27 | |
28 | - if (! array_key_exists($attribute, $this->data) && $entry) { |
|
28 | + if (!array_key_exists($attribute, $this->data) && $entry) { |
|
29 | 29 | return; |
30 | 30 | } |
31 | 31 | |
32 | 32 | $this->validateFieldRules($attribute, $value, $fail); |
33 | 33 | |
34 | - if (! empty($value) && ! empty($this->getFileRules())) { |
|
34 | + if (!empty($value) && !empty($this->getFileRules())) { |
|
35 | 35 | $validator = Validator::make([$attribute => $value], [ |
36 | 36 | $attribute => $this->getFileRules(), |
37 | 37 | ], $this->validator->customMessages, $this->validator->customAttributes); |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | } |
45 | 45 | } |
46 | 46 | |
47 | - public static function field(string|array|ValidationRule|Rule $rules = []): self |
|
47 | + public static function field(string | array | ValidationRule | Rule $rules = []): self |
|
48 | 48 | { |
49 | 49 | return parent::field($rules); |
50 | 50 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | /** |
24 | 24 | * Get the view / contents that represent the component. |
25 | 25 | */ |
26 | - public function render(): View|Closure|string |
|
26 | + public function render(): View | Closure | string |
|
27 | 27 | { |
28 | 28 | return backpack_view('components.menu-dropdown'); |
29 | 29 | } |
@@ -21,7 +21,7 @@ |
||
21 | 21 | /** |
22 | 22 | * Get the view / contents that represent the component. |
23 | 23 | */ |
24 | - public function render(): View|Closure|string |
|
24 | + public function render(): View | Closure | string |
|
25 | 25 | { |
26 | 26 | return backpack_view('components.menu-item'); |
27 | 27 | } |
@@ -21,7 +21,7 @@ |
||
21 | 21 | /** |
22 | 22 | * Get the view / contents that represent the component. |
23 | 23 | */ |
24 | - public function render(): View|Closure|string |
|
24 | + public function render(): View | Closure | string |
|
25 | 25 | { |
26 | 26 | return backpack_view('components.menu-dropdown-header'); |
27 | 27 | } |