We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | class VerifyEmailController extends Controller |
13 | 13 | { |
14 | - public null|string $redirectTo = null; |
|
14 | + public null | string $redirectTo = null; |
|
15 | 15 | |
16 | 16 | /** |
17 | 17 | * Create a new controller instance. |
@@ -20,21 +20,21 @@ discard block |
||
20 | 20 | */ |
21 | 21 | public function __construct() |
22 | 22 | { |
23 | - if (! app('router')->getMiddleware()['signed'] ?? null) { |
|
23 | + if (!app('router')->getMiddleware()['signed'] ?? null) { |
|
24 | 24 | throw new Exception('Missing "signed" alias middleware in App/Http/Kernel.php. More info: https://backpackforlaravel.com/docs/6.x/base-how-to#enable-email-verification-in-backpack-routes'); |
25 | 25 | } |
26 | 26 | |
27 | 27 | $this->middleware('signed')->only('verifyEmail'); |
28 | 28 | $this->middleware('throttle:'.config('backpack.base.email_verification_throttle_access'))->only('resendVerificationEmail'); |
29 | 29 | |
30 | - if (! backpack_users_have_email()) { |
|
30 | + if (!backpack_users_have_email()) { |
|
31 | 31 | abort(500, trans('backpack::base.no_email_column')); |
32 | 32 | } |
33 | 33 | // where to redirect after the email is verified |
34 | 34 | $this->redirectTo = $this->redirectTo ?? backpack_url('dashboard'); |
35 | 35 | } |
36 | 36 | |
37 | - public function emailVerificationRequired(Request $request): \Illuminate\Contracts\View\View|\Illuminate\Http\RedirectResponse |
|
37 | + public function emailVerificationRequired(Request $request): \Illuminate\Contracts\View\View | \Illuminate\Http\RedirectResponse |
|
38 | 38 | { |
39 | 39 | $this->getUserOrRedirect($request); |
40 | 40 | |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | return $request->user(backpack_guard_name()) ?? (new UserFromCookie())(); |
78 | 78 | } |
79 | 79 | |
80 | - private function getUserOrRedirect(Request $request): \Illuminate\Contracts\Auth\MustVerifyEmail|\Illuminate\Http\RedirectResponse |
|
80 | + private function getUserOrRedirect(Request $request): \Illuminate\Contracts\Auth\MustVerifyEmail | \Illuminate\Http\RedirectResponse |
|
81 | 81 | { |
82 | 82 | if ($user = $this->getUser($request)) { |
83 | 83 | return $user; |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | $model = $this->getRelationModel($entity, -1); |
66 | 66 | $lastSegmentAfterDot = Str::of($field['entity'])->afterLast('.'); |
67 | 67 | |
68 | - if (! method_exists($model, $lastSegmentAfterDot)) { |
|
68 | + if (!method_exists($model, $lastSegmentAfterDot)) { |
|
69 | 69 | return (string) Str::of($field['entity'])->beforeLast('.'); |
70 | 70 | } |
71 | 71 | |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | |
87 | 87 | return collect($this->getCleanStateFields()) |
88 | 88 | ->whereIn('relation_type', $relation_types) |
89 | - ->filter(function ($item) use ($nested) { |
|
89 | + ->filter(function($item) use ($nested) { |
|
90 | 90 | if ($nested) { |
91 | 91 | return true; |
92 | 92 | } |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | */ |
131 | 131 | private function getRelationFieldsWithoutRelationType($relations, $fields = []) |
132 | 132 | { |
133 | - if (! is_array($relations)) { |
|
133 | + if (!is_array($relations)) { |
|
134 | 134 | $relations = [$relations]; |
135 | 135 | } |
136 | 136 | |
@@ -139,8 +139,8 @@ discard block |
||
139 | 139 | } |
140 | 140 | |
141 | 141 | foreach ($relations as $relation) { |
142 | - $fields = array_filter($fields, function ($field) use ($relation) { |
|
143 | - if (! isset($field['relation_type'])) { |
|
142 | + $fields = array_filter($fields, function($field) use ($relation) { |
|
143 | + if (!isset($field['relation_type'])) { |
|
144 | 144 | return false; |
145 | 145 | } |
146 | 146 | |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | $fields = array_merge($field['subfields'], $fields); |
175 | 175 | } |
176 | 176 | } |
177 | - $fields = array_filter($fields, function ($field) { |
|
177 | + $fields = array_filter($fields, function($field) { |
|
178 | 178 | return isset($field['relation_type']) && $field['relation_type'] === 'BelongsTo'; |
179 | 179 | }); |
180 | 180 | } |
@@ -241,8 +241,8 @@ discard block |
||
241 | 241 | { |
242 | 242 | $all_relation_fields = $this->getRelationFields(); |
243 | 243 | |
244 | - return Arr::where($all_relation_fields, function ($value, $key) { |
|
245 | - return isset($value['pivot']) && ! $value['pivot']; |
|
244 | + return Arr::where($all_relation_fields, function($value, $key) { |
|
245 | + return isset($value['pivot']) && !$value['pivot']; |
|
246 | 246 | }); |
247 | 247 | } |
248 | 248 | |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | { |
256 | 256 | $all_relation_fields = $this->getRelationFields(); |
257 | 257 | |
258 | - return Arr::where($all_relation_fields, function ($value, $key) { |
|
258 | + return Arr::where($all_relation_fields, function($value, $key) { |
|
259 | 259 | return isset($value['pivot']) && $value['pivot']; |
260 | 260 | }); |
261 | 261 | } |
@@ -336,7 +336,7 @@ discard block |
||
336 | 336 | } |
337 | 337 | |
338 | 338 | // relationships are always public methods. |
339 | - if (! $methodReflection->isPublic()) { |
|
339 | + if (!$methodReflection->isPublic()) { |
|
340 | 340 | return false; |
341 | 341 | } |
342 | 342 | |
@@ -363,7 +363,7 @@ discard block |
||
363 | 363 | */ |
364 | 364 | public function isAttributeInRelationString(array $field): bool |
365 | 365 | { |
366 | - if (! str_contains($field['entity'], '.')) { |
|
366 | + if (!str_contains($field['entity'], '.')) { |
|
367 | 367 | return false; |
368 | 368 | } |
369 | 369 |
@@ -44,7 +44,7 @@ |
||
44 | 44 | ->filter(fn ($item) => isset($item[$macro])); |
45 | 45 | |
46 | 46 | $subfieldsWithMacros->each( |
47 | - function ($item) use ($subfieldsWithMacros, $macro) { |
|
47 | + function($item) use ($subfieldsWithMacros, $macro) { |
|
48 | 48 | if ($subfieldsWithMacros->last() === $item) { |
49 | 49 | $this->{$macro}($item[$macro], $item); |
50 | 50 | } else { |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | /** |
11 | 11 | * Set an operation as having access using the Settings API. |
12 | 12 | */ |
13 | - public function allowAccess(array|string $operation): bool |
|
13 | + public function allowAccess(array | string $operation): bool |
|
14 | 14 | { |
15 | 15 | foreach ((array) $operation as $op) { |
16 | 16 | $this->set($op.'.access', true); |
@@ -22,13 +22,13 @@ discard block |
||
22 | 22 | /** |
23 | 23 | * Disable the access to a certain operation, or the current one. |
24 | 24 | */ |
25 | - public function denyAccess(array|string $operation): bool |
|
25 | + public function denyAccess(array | string $operation): bool |
|
26 | 26 | { |
27 | 27 | foreach ((array) $operation as $op) { |
28 | 28 | $this->set($op.'.access', false); |
29 | 29 | } |
30 | 30 | |
31 | - return ! $this->hasAccessToAny($operation); |
|
31 | + return !$this->hasAccessToAny($operation); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | /** |
53 | 53 | * Check if any operations are allowed for a Crud Panel. Return false if not. |
54 | 54 | */ |
55 | - public function hasAccessToAny(array|string $operation_array, ?Model $entry = null): bool |
|
55 | + public function hasAccessToAny(array | string $operation_array, ?Model $entry = null): bool |
|
56 | 56 | { |
57 | 57 | foreach ((array) $operation_array as $key => $operation) { |
58 | 58 | if ($this->hasAccess($operation, $entry) == true) { |
@@ -66,10 +66,10 @@ discard block |
||
66 | 66 | /** |
67 | 67 | * Check if all operations are allowed for a Crud Panel. Return false if not. |
68 | 68 | */ |
69 | - public function hasAccessToAll(array|string $operation_array, ?Model $entry = null): bool |
|
69 | + public function hasAccessToAll(array | string $operation_array, ?Model $entry = null): bool |
|
70 | 70 | { |
71 | 71 | foreach ((array) $operation_array as $key => $operation) { |
72 | - if (! $this->hasAccess($operation, $entry)) { |
|
72 | + if (!$this->hasAccess($operation, $entry)) { |
|
73 | 73 | return false; |
74 | 74 | } |
75 | 75 | } |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | */ |
85 | 85 | public function hasAccessOrFail(string $operation, ?Model $entry = null): bool |
86 | 86 | { |
87 | - if (! $this->hasAccess($operation, $entry)) { |
|
87 | + if (!$this->hasAccess($operation, $entry)) { |
|
88 | 88 | throw new AccessDeniedException(trans('backpack::crud.unauthorized_access', ['access' => $operation])); |
89 | 89 | } |
90 | 90 | |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * Get an operation's access condition, if set. A condition |
96 | 96 | * can be anything, but usually a boolean or a callable. |
97 | 97 | */ |
98 | - public function getAccessCondition(string $operation): bool|callable|null |
|
98 | + public function getAccessCondition(string $operation): bool | callable | null |
|
99 | 99 | { |
100 | 100 | return $this->get($operation.'.access'); |
101 | 101 | } |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | /** |
104 | 104 | * Set the condition under which an operation is allowed for a Crud Panel. |
105 | 105 | */ |
106 | - public function setAccessCondition(array|string $operation, bool|callable|null $condition): void |
|
106 | + public function setAccessCondition(array | string $operation, bool | callable | null $condition): void |
|
107 | 107 | { |
108 | 108 | foreach ((array) $operation as $op) { |
109 | 109 | $this->set($op.'.access', $condition); |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | * Allow access only to operations in the array. |
132 | 132 | * By denying access to all other operations. |
133 | 133 | */ |
134 | - public function allowAccessOnlyTo(array|string $operation): void |
|
134 | + public function allowAccessOnlyTo(array | string $operation): void |
|
135 | 135 | { |
136 | 136 | $this->denyAllAccess(); |
137 | 137 | $this->allowAccess($operation); |
@@ -18,7 +18,7 @@ |
||
18 | 18 | 'middleware' => config('backpack.base.web_middleware', 'web'), |
19 | 19 | 'prefix' => config('backpack.base.route_prefix'), |
20 | 20 | ], |
21 | - function () { |
|
21 | + function() { |
|
22 | 22 | // if not otherwise configured, setup the auth routes |
23 | 23 | if (config('backpack.base.setup_auth_routes')) { |
24 | 24 | // Authentication Routes... |
@@ -15,7 +15,7 @@ |
||
15 | 15 | (array) config('backpack.base.middleware_key', 'admin'), |
16 | 16 | 'prefix' => config('backpack.base.route_prefix', 'admin'), |
17 | 17 | ], |
18 | - function () { |
|
18 | + function() { |
|
19 | 19 | Route::crud('users', 'Backpack\CRUD\Tests\Config\Http\Controllers\UserCrudController'); |
20 | 20 | } |
21 | 21 | ); |
@@ -605,7 +605,7 @@ discard block |
||
605 | 605 | |
606 | 606 | public function testCreateBelongsToFake() |
607 | 607 | { |
608 | - $belongsToField = [ // select_grouped |
|
608 | + $belongsToField = [// select_grouped |
|
609 | 609 | 'label' => 'Select_grouped', |
610 | 610 | 'type' => 'select_grouped', //https://github.com/Laravel-Backpack/CRUD/issues/502 |
611 | 611 | 'name' => 'bang_relation_field', |
@@ -741,7 +741,7 @@ discard block |
||
741 | 741 | 'nickname' => 'i_have_has_one', |
742 | 742 | 'profile_picture' => 'ohh my picture 1.jpg', |
743 | 743 | 'article' => 1, |
744 | - 'addresses' => [ // HasOne is tested in other test function |
|
744 | + 'addresses' => [// HasOne is tested in other test function |
|
745 | 745 | [ |
746 | 746 | 'city' => 2, |
747 | 747 | 'street' => 'test', |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | 'password' => 'test', |
46 | 46 | ]); |
47 | 47 | |
48 | - $request->setRouteResolver(function () use ($request) { |
|
48 | + $request->setRouteResolver(function() use ($request) { |
|
49 | 49 | return (new Route('POST', 'users', ['Backpack\CRUD\Tests\Config\Http\Controllers\UserCrudController', 'create']))->bind($request); |
50 | 50 | }); |
51 | 51 | |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | 'email' => '', |
86 | 86 | ]); |
87 | 87 | |
88 | - $request->setRouteResolver(function () use ($request) { |
|
88 | + $request->setRouteResolver(function() use ($request) { |
|
89 | 89 | return (new Route('POST', 'users', ['Backpack\CRUD\Tests\Config\Http\Controllers\UserCrudController', 'create']))->bind($request); |
90 | 90 | }); |
91 | 91 | |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | 'password' => 'test', |
126 | 126 | ]); |
127 | 127 | |
128 | - $request->setRouteResolver(function () use ($request) { |
|
128 | + $request->setRouteResolver(function() use ($request) { |
|
129 | 129 | return (new Route('POST', 'users', ['Backpack\CRUD\Tests\Config\Http\Controllers\UserCrudController', 'create']))->bind($request); |
130 | 130 | }); |
131 | 131 | |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | 'name' => 'test', |
248 | 248 | ]); |
249 | 249 | |
250 | - $request->setRouteResolver(function () use ($request) { |
|
250 | + $request->setRouteResolver(function() use ($request) { |
|
251 | 251 | return (new Route('POST', 'users', ['Backpack\CRUD\Tests\Config\Http\Controllers\UserCrudController', 'create']))->bind($request); |
252 | 252 | }); |
253 | 253 |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | { |
14 | 14 | public bool $handleRepeatableFiles = false; |
15 | 15 | |
16 | - public null|string $repeatableContainerName = null; |
|
16 | + public null | string $repeatableContainerName = null; |
|
17 | 17 | |
18 | 18 | /******************************* |
19 | 19 | * Setters - fluently configure the uploader |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | /******************************* |
31 | 31 | * Getters |
32 | 32 | *******************************/ |
33 | - public function getRepeatableContainerName(): null|string |
|
33 | + public function getRepeatableContainerName(): null | string |
|
34 | 34 | { |
35 | 35 | return $this->repeatableContainerName; |
36 | 36 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | foreach (app('UploadersRepository')->getRepeatableUploadersFor($this->getRepeatableContainerName()) as $uploader) { |
77 | 77 | $uploadedValues = $uploader->uploadRepeatableFiles($values->pluck($uploader->getAttributeName())->toArray(), $this->getPreviousRepeatableValues($entry, $uploader)); |
78 | 78 | |
79 | - $values = $values->map(function ($item, $key) use ($uploadedValues, $uploader) { |
|
79 | + $values = $values->map(function($item, $key) use ($uploadedValues, $uploader) { |
|
80 | 80 | $item[$uploader->getAttributeName()] = $uploadedValues[$key] ?? null; |
81 | 81 | |
82 | 82 | return $item; |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | |
97 | 97 | $values = $entry->{$this->getRepeatableContainerName()}; |
98 | 98 | $values = is_string($values) ? json_decode($values, true) : $values; |
99 | - $values = array_map(function ($item) use ($repeatableUploaders) { |
|
99 | + $values = array_map(function($item) use ($repeatableUploaders) { |
|
100 | 100 | foreach ($repeatableUploaders as $upload) { |
101 | 101 | $item[$upload->getAttributeName()] = $this->getValuesWithPathStripped($item, $upload); |
102 | 102 | } |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | |
112 | 112 | private function retrieveRepeatableRelationFiles(Model $entry) |
113 | 113 | { |
114 | - switch($this->getRepeatableRelationType()) { |
|
114 | + switch ($this->getRepeatableRelationType()) { |
|
115 | 115 | case 'BelongsToMany': |
116 | 116 | case 'MorphToMany': |
117 | 117 | $pivotClass = app('crud')->getModel()->{$this->getUploaderSubfield()['baseEntity']}()->getPivotClass(); |
@@ -157,12 +157,12 @@ discard block |
||
157 | 157 | |
158 | 158 | $repeatableValues = collect($entry->{$this->getName()}); |
159 | 159 | foreach (app('UploadersRepository')->getRepeatableUploadersFor($this->getRepeatableContainerName()) as $upload) { |
160 | - if (! $upload->shouldDeleteFiles()) { |
|
160 | + if (!$upload->shouldDeleteFiles()) { |
|
161 | 161 | continue; |
162 | 162 | } |
163 | 163 | $values = $repeatableValues->pluck($upload->getName())->toArray(); |
164 | 164 | foreach ($values as $value) { |
165 | - if (! $value) { |
|
165 | + if (!$value) { |
|
166 | 166 | continue; |
167 | 167 | } |
168 | 168 | |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | /** |
186 | 186 | * Given two multidimensional arrays/collections, merge them recursively. |
187 | 187 | */ |
188 | - protected function mergeValuesRecursive(array|Collection $array1, array|Collection $array2): array|Collection |
|
188 | + protected function mergeValuesRecursive(array | Collection $array1, array | Collection $array2): array | Collection |
|
189 | 189 | { |
190 | 190 | $merged = $array1; |
191 | 191 | foreach ($array2 as $key => &$value) { |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | { |
208 | 208 | $items = CRUD::getRequest()->input('_order_'.$this->getRepeatableContainerName()) ?? []; |
209 | 209 | |
210 | - array_walk($items, function (&$key, $value) { |
|
210 | + array_walk($items, function(&$key, $value) { |
|
211 | 211 | $requestValue = $key[$this->getName()] ?? null; |
212 | 212 | $key = $this->handleMultipleFiles ? (is_string($requestValue) ? explode(',', $requestValue) : $requestValue) : $requestValue; |
213 | 213 | }); |
@@ -219,18 +219,18 @@ discard block |
||
219 | 219 | { |
220 | 220 | $previousValues = json_decode($entry->getOriginal($uploader->getRepeatableContainerName()), true); |
221 | 221 | |
222 | - if (! empty($previousValues)) { |
|
222 | + if (!empty($previousValues)) { |
|
223 | 223 | $previousValues = array_column($previousValues, $uploader->getName()); |
224 | 224 | } |
225 | 225 | |
226 | 226 | return $previousValues ?? []; |
227 | 227 | } |
228 | 228 | |
229 | - private function getValuesWithPathStripped(array|string|null $item, UploaderInterface $upload) |
|
229 | + private function getValuesWithPathStripped(array | string | null $item, UploaderInterface $upload) |
|
230 | 230 | { |
231 | 231 | $uploadedValues = $item[$upload->getName()] ?? null; |
232 | 232 | if (is_array($uploadedValues)) { |
233 | - return array_map(function ($value) use ($upload) { |
|
233 | + return array_map(function($value) use ($upload) { |
|
234 | 234 | return Str::after($value, $upload->getPath()); |
235 | 235 | }, $uploadedValues); |
236 | 236 | } |
@@ -242,19 +242,19 @@ discard block |
||
242 | 242 | { |
243 | 243 | if (in_array($this->getRepeatableRelationType(), ['BelongsToMany', 'MorphToMany'])) { |
244 | 244 | $pivotAttributes = $entry->getAttributes(); |
245 | - $connectedPivot = $entry->pivotParent->{$this->getRepeatableContainerName()}->where(function ($item) use ($pivotAttributes) { |
|
245 | + $connectedPivot = $entry->pivotParent->{$this->getRepeatableContainerName()}->where(function($item) use ($pivotAttributes) { |
|
246 | 246 | $itemPivotAttributes = $item->pivot->only(array_keys($pivotAttributes)); |
247 | 247 | |
248 | 248 | return $itemPivotAttributes === $pivotAttributes; |
249 | 249 | })->first(); |
250 | 250 | |
251 | - if (! $connectedPivot) { |
|
251 | + if (!$connectedPivot) { |
|
252 | 252 | return; |
253 | 253 | } |
254 | 254 | |
255 | 255 | $files = $connectedPivot->getOriginal()['pivot_'.$this->getAttributeName()]; |
256 | 256 | |
257 | - if (! $files) { |
|
257 | + if (!$files) { |
|
258 | 258 | return; |
259 | 259 | } |
260 | 260 |