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
Push — fix-uploaders ( 5a879f...32c88e )
by Pedro
25:45 queued 12:14
created
src/app/Library/Validation/Rules/ValidUpload.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
     {
17 17
         $entry = CrudPanelFacade::getCurrentEntry();
18 18
 
19
-        if (! Arr::has($this->data, $attribute)) {
20
-            if($entry && ! str_contains($attribute, '.')) {
19
+        if (!Arr::has($this->data, $attribute)) {
20
+            if ($entry && !str_contains($attribute, '.')) {
21 21
                 return [];
22 22
             }
23 23
             $requestAttributeValue = Arr::get($this->data, '_order_'.$attribute);
@@ -28,14 +28,14 @@  discard block
 block discarded – undo
28 28
 
29 29
         $fieldErrors = $this->validateFieldRules($attribute, $value);
30 30
 
31
-        if (! empty($value) && ! empty($this->getFileRules())) {
31
+        if (!empty($value) && !empty($this->getFileRules())) {
32 32
             $fileErrors = $this->validateFileRules($attribute, $value);
33 33
         }
34 34
 
35 35
         return array_merge($fieldErrors, $fileErrors ?? []);
36 36
     }
37 37
 
38
-    public static function field(string|array|ValidationRule|Rule $rules = []): self
38
+    public static function field(string | array | ValidationRule | Rule $rules = []): self
39 39
     {
40 40
         return parent::field($rules);
41 41
     }
Please login to merge, or discard this patch.