Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Passed
Pull Request — main (#5715)
by Cristian
42:22 queued 27:20
created
src/app/Library/Uploaders/Support/Interfaces/UploaderInterface.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
     /**
11 11
      * Static constructor function.
12 12
      */
13
-    public static function for(array $field, array $configuration): UploaderInterface;
13
+    public static function for (array $field, array $configuration): UploaderInterface;
14 14
 
15 15
     /**
16 16
      * Default implementation functions.
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     public function relationship(bool $isRelation): self;
36 36
 
37
-    public function fake(bool|string $isFake): self;
37
+    public function fake(bool | string $isFake): self;
38 38
 
39 39
     /**
40 40
      * Getters.
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
     public function getExpirationTimeInMinutes(): int;
53 53
 
54
-    public function getFileName(string|UploadedFile $file): string;
54
+    public function getFileName(string | UploadedFile $file): string;
55 55
 
56 56
     public function getRepeatableContainerName(): ?string;
57 57
 
Please login to merge, or discard this patch.
src/app/Library/Uploaders/SingleBase64Image.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     {
15 15
         $previousImage = $this->getPreviousFiles($entry);
16 16
 
17
-        if (! $value && $previousImage) {
17
+        if (!$value && $previousImage) {
18 18
             Storage::disk($this->getDisk())->delete($previousImage);
19 19
 
20 20
             return null;
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
     public function shouldKeepPreviousValueUnchanged(Model $entry, $entryValue): bool
69 69
     {
70
-        return $entry->exists && is_string($entryValue) && ! Str::startsWith($entryValue, 'data:image');
70
+        return $entry->exists && is_string($entryValue) && !Str::startsWith($entryValue, 'data:image');
71 71
     }
72 72
 
73 73
     public function getUploadedFilesFromRequest()
Please login to merge, or discard this patch.
src/ThemeServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
         }
146 146
 
147 147
         // Registering package commands.
148
-        if (! empty($this->commands)) {
148
+        if (!empty($this->commands)) {
149 149
             $this->commands($this->commands);
150 150
         }
151 151
     }
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
     protected function packageDirectoryExistsAndIsNotEmpty($name)
241 241
     {
242 242
         // check if directory exists
243
-        if (! is_dir($this->getPath().'/'.$name)) {
243
+        if (!is_dir($this->getPath().'/'.$name)) {
244 244
             return false;
245 245
         }
246 246
 
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
     public function registerPackageBladeComponents()
266 266
     {
267 267
         if ($this->componentsNamespace) {
268
-            $this->app->afterResolving(BladeCompiler::class, function () {
268
+            $this->app->afterResolving(BladeCompiler::class, function() {
269 269
                 Blade::componentNamespace($this->componentsNamespace, $this->packageName);
270 270
             });
271 271
         }
Please login to merge, or discard this patch.
src/app/Http/Controllers/Auth/VerifyEmailController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,21 +20,21 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/app/Library/Uploaders/Support/Traits/HandleRepeatableUploads.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
         foreach (app('UploadersRepository')->getRepeatableUploadersFor($this->getRepeatableContainerName()) as $uploader) {
153 153
             $uploadedValues = $uploader->uploadRepeatableFiles($values->pluck($uploader->getAttributeName())->toArray(), $this->getPreviousRepeatableValues($entry, $uploader));
154 154
 
155
-            $values = $values->map(function ($item, $key) use ($uploadedValues, $uploader) {
155
+            $values = $values->map(function($item, $key) use ($uploadedValues, $uploader) {
156 156
                 $item[$uploader->getAttributeName()] = $uploadedValues[$key] ?? null;
157 157
 
158 158
                 return $item;
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 
184 184
         $values = $entry->{$this->getRepeatableContainerName()};
185 185
         $values = is_string($values) ? json_decode($values, true) : $values;
186
-        $values = array_map(function ($item) use ($repeatableUploaders) {
186
+        $values = array_map(function($item) use ($repeatableUploaders) {
187 187
             foreach ($repeatableUploaders as $upload) {
188 188
                 $item[$upload->getAttributeName()] = $this->getValuesWithPathStripped($item, $upload);
189 189
             }
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 
199 199
     private function retrieveRepeatableRelationFiles(Model $entry)
200 200
     {
201
-        switch($this->getRepeatableRelationType()) {
201
+        switch ($this->getRepeatableRelationType()) {
202 202
             case 'BelongsToMany':
203 203
             case 'MorphToMany':
204 204
                 $pivotClass = app('crud')->getModel()->{$this->getUploaderSubfield()['baseEntity']}()->getPivotClass();
@@ -251,12 +251,12 @@  discard block
 block discarded – undo
251 251
         $repeatableValues ??= collect($entry->{$this->getRepeatableContainerName()});
252 252
 
253 253
         foreach (app('UploadersRepository')->getRepeatableUploadersFor($this->getRepeatableContainerName()) as $upload) {
254
-            if (! $upload->shouldDeleteFiles()) {
254
+            if (!$upload->shouldDeleteFiles()) {
255 255
                 continue;
256 256
             }
257 257
             $values = $repeatableValues->pluck($upload->getName())->toArray();
258 258
             foreach ($values as $value) {
259
-                if (! $value) {
259
+                if (!$value) {
260 260
                     continue;
261 261
                 }
262 262
 
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
     /**
280 280
      * Given two multidimensional arrays/collections, merge them recursively.
281 281
      */
282
-    protected function mergeValuesRecursive(array|Collection $array1, array|Collection $array2): array|Collection
282
+    protected function mergeValuesRecursive(array | Collection $array1, array | Collection $array2): array | Collection
283 283
     {
284 284
         $merged = $array1;
285 285
         foreach ($array2 as $key => &$value) {
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
     {
302 302
         $items = CRUD::getRequest()->input('_order_'.$this->getRepeatableContainerName()) ?? [];
303 303
 
304
-        array_walk($items, function (&$key, $value) {
304
+        array_walk($items, function(&$key, $value) {
305 305
             $requestValue = $key[$this->getName()] ?? null;
306 306
             $key = $this->handleMultipleFiles ? (is_string($requestValue) ? explode(',', $requestValue) : $requestValue) : $requestValue;
307 307
         });
@@ -313,22 +313,22 @@  discard block
 block discarded – undo
313 313
     {
314 314
         $previousValues = $entry->getOriginal($uploader->getRepeatableContainerName());
315 315
 
316
-        if (! is_array($previousValues)) {
316
+        if (!is_array($previousValues)) {
317 317
             $previousValues = json_decode($previousValues, true);
318 318
         }
319 319
 
320
-        if (! empty($previousValues)) {
320
+        if (!empty($previousValues)) {
321 321
             $previousValues = array_column($previousValues, $uploader->getName());
322 322
         }
323 323
 
324 324
         return $previousValues ?? [];
325 325
     }
326 326
 
327
-    private function getValuesWithPathStripped(array|string|null $item, UploaderInterface $uploader)
327
+    private function getValuesWithPathStripped(array | string | null $item, UploaderInterface $uploader)
328 328
     {
329 329
         $uploadedValues = $item[$uploader->getName()] ?? null;
330 330
         if (is_array($uploadedValues)) {
331
-            return array_map(function ($value) use ($uploader) {
331
+            return array_map(function($value) use ($uploader) {
332 332
                 return $uploader->getValueWithoutPath($value);
333 333
             }, $uploadedValues);
334 334
         }
@@ -338,8 +338,8 @@  discard block
 block discarded – undo
338 338
 
339 339
     private function deleteRelationshipFiles(Model $entry): void
340 340
     {
341
-        if (! is_a($entry, Pivot::class, true) &&
342
-            ! $entry->relationLoaded($this->getRepeatableContainerName()) &&
341
+        if (!is_a($entry, Pivot::class, true) &&
342
+            !$entry->relationLoaded($this->getRepeatableContainerName()) &&
343 343
             method_exists($entry, $this->getRepeatableContainerName())
344 344
         ) {
345 345
             $entry->loadMissing($this->getRepeatableContainerName());
@@ -366,8 +366,8 @@  discard block
 block discarded – undo
366 366
             $relatedEntries = $entry->{$this->getRepeatableContainerName()} ?? [];
367 367
         }
368 368
 
369
-        if (! is_a($relatedEntries ?? '', Collection::class, true)) {
370
-            $relatedEntries = ! empty($relatedEntries) ? [$relatedEntries] : [$entry];
369
+        if (!is_a($relatedEntries ?? '', Collection::class, true)) {
370
+            $relatedEntries = !empty($relatedEntries) ? [$relatedEntries] : [$entry];
371 371
         }
372 372
 
373 373
         foreach ($relatedEntries as $relatedEntry) {
@@ -375,9 +375,9 @@  discard block
 block discarded – undo
375 375
         }
376 376
     }
377 377
 
378
-    protected function deletePivotFiles(Pivot|Model $entry)
378
+    protected function deletePivotFiles(Pivot | Model $entry)
379 379
     {
380
-        if (! is_a($entry, Pivot::class, true)) {
380
+        if (!is_a($entry, Pivot::class, true)) {
381 381
             $pivots = $entry->{$this->getRepeatableContainerName()};
382 382
             foreach ($pivots as $pivot) {
383 383
                 $this->deletePivotModelFiles($pivot);
@@ -387,24 +387,24 @@  discard block
 block discarded – undo
387 387
         }
388 388
 
389 389
         $pivotAttributes = $entry->getAttributes();
390
-        $connectedPivot = $entry->pivotParent->{$this->getRepeatableContainerName()}->where(function ($item) use ($pivotAttributes) {
390
+        $connectedPivot = $entry->pivotParent->{$this->getRepeatableContainerName()}->where(function($item) use ($pivotAttributes) {
391 391
             $itemPivotAttributes = $item->pivot->only(array_keys($pivotAttributes));
392 392
 
393 393
             return $itemPivotAttributes === $pivotAttributes;
394 394
         })->first();
395 395
 
396
-        if (! $connectedPivot) {
396
+        if (!$connectedPivot) {
397 397
             return;
398 398
         }
399 399
 
400 400
         $this->deletePivotModelFiles($connectedPivot);
401 401
     }
402 402
 
403
-    private function deletePivotModelFiles(Pivot|Model $entry)
403
+    private function deletePivotModelFiles(Pivot | Model $entry)
404 404
     {
405 405
         $files = $entry->getOriginal()['pivot_'.$this->getAttributeName()];
406 406
 
407
-        if (! $files) {
407
+        if (!$files) {
408 408
             return;
409 409
         }
410 410
 
Please login to merge, or discard this patch.
src/app/Library/Uploaders/Support/UploadersRepository.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public function markAsHandled(string $objectName): void
36 36
     {
37
-        if (! in_array($objectName, $this->handledUploaders)) {
37
+        if (!in_array($objectName, $this->handledUploaders)) {
38 38
             $this->handledUploaders[] = $objectName;
39 39
         }
40 40
     }
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      */
61 61
     public function getUploadFor(string $objectType, string $group): string
62 62
     {
63
-        if (! $this->hasUploadFor($objectType, $group)) {
63
+        if (!$this->hasUploadFor($objectType, $group)) {
64 64
             throw new \Exception('There is no uploader defined for the given field type.');
65 65
         }
66 66
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     {
83 83
         // ensure all uploaders implement the UploaderInterface
84 84
         foreach ($uploaders as $uploader) {
85
-            if (! is_a($uploader, UploaderInterface::class, true)) {
85
+            if (!is_a($uploader, UploaderInterface::class, true)) {
86 86
                 throw new \Exception('The uploader class must implement the UploaderInterface.');
87 87
             }
88 88
         }
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      */
103 103
     public function registerRepeatableUploader(string $uploadName, UploaderInterface $uploader): void
104 104
     {
105
-        if (! array_key_exists($uploadName, $this->repeatableUploaders) || ! in_array($uploader, $this->repeatableUploaders[$uploadName])) {
105
+        if (!array_key_exists($uploadName, $this->repeatableUploaders) || !in_array($uploader, $this->repeatableUploaders[$uploadName])) {
106 106
             $this->repeatableUploaders[$uploadName][] = $uploader;
107 107
         }
108 108
     }
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
      */
137 137
     public function getRegisteredUploadNames(string $uploadName): array
138 138
     {
139
-        return array_map(function ($uploader) {
139
+        return array_map(function($uploader) {
140 140
             return $uploader->getName();
141 141
         }, $this->getRepeatableUploadersFor($uploadName));
142 142
     }
@@ -167,11 +167,11 @@  discard block
 block discarded – undo
167 167
 
168 168
             $uploaders = $this->getRepeatableUploadersFor($repeatableContainerName);
169 169
 
170
-            $uploader = Arr::first($uploaders, function ($uploader) use ($requestInputName) {
170
+            $uploader = Arr::first($uploaders, function($uploader) use ($requestInputName) {
171 171
                 return $uploader->getName() === $requestInputName;
172 172
             });
173 173
 
174
-            if (! $uploader) {
174
+            if (!$uploader) {
175 175
                 abort(500, 'Could not find the field in the repeatable uploaders.');
176 176
             }
177 177
 
@@ -182,16 +182,16 @@  discard block
 block discarded – undo
182 182
             abort(500, 'Could not find the field in the CRUD fields.');
183 183
         }
184 184
 
185
-        if (! $uploaderMacro = $this->getUploadCrudObjectMacroType($crudObject)) {
185
+        if (!$uploaderMacro = $this->getUploadCrudObjectMacroType($crudObject)) {
186 186
             abort(500, 'There is no uploader defined for the given field type.');
187 187
         }
188 188
 
189
-        if (! $this->isValidUploadField($crudObject, $uploaderMacro)) {
189
+        if (!$this->isValidUploadField($crudObject, $uploaderMacro)) {
190 190
             abort(500, 'Invalid field for upload.');
191 191
         }
192 192
 
193 193
         $uploaderConfiguration = $crudObject[$uploaderMacro] ?? [];
194
-        $uploaderConfiguration = ! is_array($uploaderConfiguration) ? [] : $uploaderConfiguration;
194
+        $uploaderConfiguration = !is_array($uploaderConfiguration) ? [] : $uploaderConfiguration;
195 195
         $uploaderClass = $this->getUploadFor($crudObject['type'], $uploaderMacro);
196 196
 
197 197
         return new $uploaderClass(['name' => $requestInputName], $uploaderConfiguration);
@@ -217,11 +217,11 @@  discard block
 block discarded – undo
217 217
     {
218 218
         if (Str::contains($crudObject['name'], '#')) {
219 219
             $container = Str::before($crudObject['name'], '#');
220
-            $field = array_filter(CRUD::fields()[$container]['subfields'] ?? [], function ($item) use ($crudObject, $uploaderMacro) {
220
+            $field = array_filter(CRUD::fields()[$container]['subfields'] ?? [], function($item) use ($crudObject, $uploaderMacro) {
221 221
                 return $item['name'] === $crudObject['name'] && in_array($item['type'], $this->getAjaxUploadTypes($uploaderMacro));
222 222
             });
223 223
 
224
-            return ! empty($field);
224
+            return !empty($field);
225 225
         }
226 226
 
227 227
         return in_array($crudObject['type'], $this->getAjaxUploadTypes($uploaderMacro));
Please login to merge, or discard this patch.
src/app/Http/Controllers/Operations/ListOperation.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
             'operation' => 'list',
29 29
         ]);
30 30
 
31
-        if (! isset($this->setupDetailsRowRoute) || $this->setupDetailsRowRoute === true) {
31
+        if (!isset($this->setupDetailsRowRoute) || $this->setupDetailsRowRoute === true) {
32 32
             Route::get($segment.'/{id}/details', [
33 33
                 'as' => $routeName.'.showDetailsRow',
34 34
                 'uses' => $controller.'@showDetailsRow',
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     {
45 45
         $this->crud->allowAccess('list');
46 46
 
47
-        LifecycleHook::hookInto('list:before_setup', function () {
47
+        LifecycleHook::hookInto('list:before_setup', function() {
48 48
             $this->crud->loadDefaultOperationSettingsFromConfig();
49 49
             $this->crud->setOperationSetting('datatablesUrl', $this->crud->getRoute());
50 50
         });
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         $search = request()->input('search');
83 83
 
84 84
         // check if length is allowed by developer
85
-        if ($length && ! in_array($length, $this->crud->getPageLengthMenu()[0])) {
85
+        if ($length && !in_array($length, $this->crud->getPageLengthMenu()[0])) {
86 86
             return response()->json([
87 87
                 'error' => 'Unknown page length.',
88 88
             ], 400);
Please login to merge, or discard this patch.
src/BackpackServiceProvider.php 1 patch
Spacing   +14 added lines, -16 removed lines patch added patch discarded remove patch
@@ -83,28 +83,28 @@  discard block
 block discarded – undo
83 83
         $this->registerBackpackErrorViews();
84 84
 
85 85
         // Bind the CrudPanel object to Laravel's service container
86
-        $this->app->scoped('crud', function ($app) {
86
+        $this->app->scoped('crud', function($app) {
87 87
             return new CrudPanel();
88 88
         });
89 89
 
90
-        $this->app->scoped('DatabaseSchema', function ($app) {
90
+        $this->app->scoped('DatabaseSchema', function($app) {
91 91
             return new DatabaseSchema();
92 92
         });
93 93
 
94
-        $this->app->scoped('BackpackLifecycleHooks', function ($app) {
94
+        $this->app->scoped('BackpackLifecycleHooks', function($app) {
95 95
             return new app\Library\CrudPanel\Hooks\LifecycleHooks();
96 96
         });
97 97
 
98
-        $this->app->singleton('BackpackViewNamespaces', function ($app) {
98
+        $this->app->singleton('BackpackViewNamespaces', function($app) {
99 99
             return new ViewNamespaces();
100 100
         });
101 101
 
102 102
         // Bind the widgets collection object to Laravel's service container
103
-        $this->app->singleton('widgets', function ($app) {
103
+        $this->app->singleton('widgets', function($app) {
104 104
             return new Collection();
105 105
         });
106 106
 
107
-        $this->app->scoped('UploadersRepository', function ($app) {
107
+        $this->app->scoped('UploadersRepository', function($app) {
108 108
             return new UploadersRepository();
109 109
         });
110 110
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
         $middleware_key = config('backpack.base.middleware_key');
121 121
         $middleware_class = config('backpack.base.middleware_class');
122 122
 
123
-        if (! is_array($middleware_class)) {
123
+        if (!is_array($middleware_class)) {
124 124
             $router->pushMiddlewareToGroup($middleware_key, $middleware_class);
125 125
 
126 126
             return;
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
         $configs = scandir(__DIR__."/config/backpack/$dir/");
236 236
         $configs = array_diff($configs, ['.', '..']);
237 237
 
238
-        if (! count($configs)) {
238
+        if (!count($configs)) {
239 239
             return;
240 240
         }
241 241
 
@@ -284,8 +284,7 @@  discard block
 block discarded – undo
284 284
         // add the backpack_users password broker to the configuration
285 285
         $laravelAuthPasswordBrokers = app()->config['auth.passwords'];
286 286
         $laravelFirstPasswordBroker = is_array($laravelAuthPasswordBrokers) && current($laravelAuthPasswordBrokers) ?
287
-                                        current($laravelAuthPasswordBrokers)['table'] :
288
-                                        '';
287
+                                        current($laravelAuthPasswordBrokers)['table'] : '';
289 288
 
290 289
         $backpackPasswordBrokerTable = config('backpack.base.password_resets_table') ??
291 290
                                         config('auth.passwords.users.table') ??
@@ -313,7 +312,7 @@  discard block
 block discarded – undo
313 312
 
314 313
     public function loadViewComponents()
315 314
     {
316
-        $this->app->afterResolving(BladeCompiler::class, function () {
315
+        $this->app->afterResolving(BladeCompiler::class, function() {
317 316
             Blade::componentNamespace('Backpack\\CRUD\\app\\View\\Components', 'backpack');
318 317
         });
319 318
     }
@@ -339,13 +338,13 @@  discard block
 block discarded – undo
339 338
     private function registerBackpackErrorViews()
340 339
     {
341 340
         // register the backpack error when the exception handler is resolved from the container
342
-        $this->callAfterResolving(ExceptionHandler::class, function ($handler) {
343
-            if (! Str::startsWith(request()->path(), config('backpack.base.route_prefix'))) {
341
+        $this->callAfterResolving(ExceptionHandler::class, function($handler) {
342
+            if (!Str::startsWith(request()->path(), config('backpack.base.route_prefix'))) {
344 343
                 return;
345 344
             }
346 345
 
347 346
             // parse the namespaces set in config
348
-            [$themeNamespace, $themeFallbackNamespace] = (function () {
347
+            [$themeNamespace, $themeFallbackNamespace] = (function() {
349 348
                 $themeNamespace = config('backpack.ui.view_namespace');
350 349
                 $themeFallbackNamespace = config('backpack.ui.view_namespace_fallback');
351 350
 
@@ -362,8 +361,7 @@  discard block
 block discarded – undo
362 361
             // - fallback theme paths
363 362
             // - ui path
364 363
             $themeErrorPaths = $viewFinderHints[$themeNamespace] ?? [];
365
-            $themeErrorPaths = $themeNamespace === $themeFallbackNamespace ? $themeErrorPaths :
366
-                array_merge($viewFinderHints[$themeFallbackNamespace] ?? [], $themeErrorPaths);
364
+            $themeErrorPaths = $themeNamespace === $themeFallbackNamespace ? $themeErrorPaths : array_merge($viewFinderHints[$themeFallbackNamespace] ?? [], $themeErrorPaths);
367 365
             $uiErrorPaths = [base_path('vendor/backpack/crud/src/resources/views/ui')];
368 366
             $themeErrorPaths = array_merge($themeErrorPaths, $uiErrorPaths);
369 367
 
Please login to merge, or discard this patch.
src/app/Library/Validation/Rules/BackpackCustomRule.php 1 patch
Spacing   +14 added lines, -15 removed lines patch added patch discarded remove patch
@@ -29,13 +29,13 @@  discard block
 block discarded – undo
29 29
 
30 30
     public bool $implicit = true;
31 31
 
32
-    public static function field(string|array|ValidationRule|Rule $rules = []): self
32
+    public static function field(string | array | ValidationRule | Rule $rules = []): self
33 33
     {
34 34
         $instance = new static();
35 35
         $instance->fieldRules = self::getRulesAsArray($rules);
36 36
 
37 37
         if ($instance->validatesArrays()) {
38
-            if (! in_array('array', $instance->getFieldRules())) {
38
+            if (!in_array('array', $instance->getFieldRules())) {
39 39
                 $instance->fieldRules[] = 'array';
40 40
             }
41 41
         }
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 
96 96
     public function getFieldRules(): array
97 97
     {
98
-        return tap($this->fieldRules, function ($rule) {
98
+        return tap($this->fieldRules, function($rule) {
99 99
             if (is_a($rule, BackpackCustomRule::class, true)) {
100 100
                 $rule = $rule->getFieldRules();
101 101
             }
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
             $rules = explode('|', $rules);
111 111
         }
112 112
 
113
-        if (! is_array($rules)) {
113
+        if (!is_array($rules)) {
114 114
             $rules = [$rules];
115 115
         }
116 116
 
@@ -119,10 +119,10 @@  discard block
 block discarded – undo
119 119
 
120 120
     protected function ensureValueIsValid($value)
121 121
     {
122
-        if ($this->validatesArrays() && ! is_array($value)) {
122
+        if ($this->validatesArrays() && !is_array($value)) {
123 123
             try {
124 124
                 $value = json_decode($value, true) ?? [];
125
-            } catch(\Exception $e) {
125
+            } catch (\Exception $e) {
126 126
                 return false;
127 127
             }
128 128
         }
@@ -141,12 +141,12 @@  discard block
 block discarded – undo
141 141
             $attribute => $rules,
142 142
         ], $this->validator->customMessages, $this->getValidatorCustomAttributes($attribute));
143 143
 
144
-        return $validator->errors()->messages()[$attribute] ?? (! empty($validator->errors()->messages()) ? current($validator->errors()->messages()) : []);
144
+        return $validator->errors()->messages()[$attribute] ?? (!empty($validator->errors()->messages()) ? current($validator->errors()->messages()) : []);
145 145
     }
146 146
 
147 147
     private function getValidatorCustomAttributes(string $attribute): array
148 148
     {
149
-        if (! is_a($this, ValidGenericAjaxEndpoint::class) && ! Str::contains($attribute, '.*.')) {
149
+        if (!is_a($this, ValidGenericAjaxEndpoint::class) && !Str::contains($attribute, '.*.')) {
150 150
             return $this->validator->customAttributes;
151 151
         }
152 152
 
@@ -157,8 +157,7 @@  discard block
 block discarded – undo
157 157
     protected function getValidationAttributeString(string $attribute)
158 158
     {
159 159
         return Str::substrCount($attribute, '.') > 1 ?
160
-                Str::before($attribute, '.').'.*.'.Str::afterLast($attribute, '.') :
161
-                $attribute;
160
+                Str::before($attribute, '.').'.*.'.Str::afterLast($attribute, '.') : $attribute;
162 161
     }
163 162
 
164 163
     protected function validateOnSubmit(string $attribute, mixed $value): array
@@ -178,7 +177,7 @@  discard block
 block discarded – undo
178 177
     /**
179 178
      * Implementation.
180 179
      */
181
-    public function validateFieldRules(string $attribute, null|array|string|UploadedFile $data = null, ?array $customRules = null): array
180
+    public function validateFieldRules(string $attribute, null | array | string | UploadedFile $data = null, ?array $customRules = null): array
182 181
     {
183 182
         $data = $data ?? $this->data;
184 183
         $validationRuleAttribute = $this->getValidationAttributeString($attribute);
@@ -187,16 +186,16 @@  discard block
 block discarded – undo
187 186
         return $this->validateAndGetErrors($validationRuleAttribute, $data, $customRules ?? $this->getFieldRules());
188 187
     }
189 188
 
190
-    protected function prepareValidatorData(array|string|UploadedFile $data, string $attribute): array
189
+    protected function prepareValidatorData(array | string | UploadedFile $data, string $attribute): array
191 190
     {
192
-        if ($this->validatesArrays() && is_array($data) && ! Str::contains($attribute, '.')) {
191
+        if ($this->validatesArrays() && is_array($data) && !Str::contains($attribute, '.')) {
193 192
             return Arr::has($data, $attribute) ? $data : [$attribute => $data];
194 193
         }
195 194
 
196 195
         if (Str::contains($attribute, '.')) {
197 196
             $validData = [];
198 197
 
199
-            Arr::set($validData, $attribute, ! is_array($data) ? $data : Arr::get($data, $attribute));
198
+            Arr::set($validData, $attribute, !is_array($data) ? $data : Arr::get($data, $attribute));
200 199
 
201 200
             return $validData;
202 201
         }
@@ -211,7 +210,7 @@  discard block
 block discarded – undo
211 210
         $validationRuleAttribute = $this->getValidationAttributeString($attribute);
212 211
 
213 212
         $filesToValidate = Arr::get($items, $attribute);
214
-        $filesToValidate = is_array($filesToValidate) ? array_filter($filesToValidate, function ($item) {
213
+        $filesToValidate = is_array($filesToValidate) ? array_filter($filesToValidate, function($item) {
215 214
             return $item instanceof UploadedFile;
216 215
         }) : (is_a($filesToValidate, UploadedFile::class, true) ? [$filesToValidate] : []);
217 216
 
Please login to merge, or discard this patch.