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-l10-password-reset ( e394b8...8b4b38 )
by Pedro
12:07 queued 14s
created
src/config/backpack/base.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -70,13 +70,13 @@  discard block
 block discarded – undo
70 70
     ],
71 71
 
72 72
     // CSS files that are loaded in all pages, using Laravel's mix() helper
73
-    'mix_styles' => [ // file_path => manifest_directory_path
73
+    'mix_styles' => [// file_path => manifest_directory_path
74 74
         // 'css/app.css' => '',
75 75
     ],
76 76
 
77 77
     // CSS files that are loaded in all pages, using Laravel's @vite() helper
78 78
     // Please note that support for Vite was added in Laravel 9.19. Earlier versions are not able to use this feature.
79
-    'vite_styles' => [ // resource file_path
79
+    'vite_styles' => [// resource file_path
80 80
         // 'resources/css/app.css',
81 81
     ],
82 82
 
@@ -152,12 +152,12 @@  discard block
 block discarded – undo
152 152
     ],
153 153
 
154 154
     // JS files that are loaded in all pages, using Laravel's mix() helper
155
-    'mix_scripts' => [ // file_path => manifest_directory_path
155
+    'mix_scripts' => [// file_path => manifest_directory_path
156 156
         // 'js/app.js' => '',
157 157
     ],
158 158
 
159 159
     // JS files that are loaded in all pages, using Laravel's @vite() helper
160
-    'vite_scripts' => [ // resource file_path
160
+    'vite_scripts' => [// resource file_path
161 161
         // 'resources/js/app.js',
162 162
     ],
163 163
 
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Tabs.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      */
33 33
     public function tabsDisabled()
34 34
     {
35
-        return ! $this->tabsEnabled();
35
+        return !$this->tabsEnabled();
36 36
     }
37 37
 
38 38
     public function setTabsType($type)
@@ -121,8 +121,8 @@  discard block
 block discarded – undo
121 121
      */
122 122
     public function getElementsWithoutATab(array $elements)
123 123
     {
124
-        return collect($elements)->filter(function ($value) {
125
-            return ! isset($value['tab']);
124
+        return collect($elements)->filter(function($value) {
125
+            return !isset($value['tab']);
126 126
         });
127 127
     }
128 128
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
         if (in_array($tabLabel, $this->getUniqueTabNames($source))) {
146 146
             $items = $this->getCurrentItems($source);
147 147
 
148
-            return collect($items)->filter(function ($value) use ($tabLabel) {
148
+            return collect($items)->filter(function($value) use ($tabLabel) {
149 149
                 return isset($value['tab']) && $value['tab'] == $tabLabel;
150 150
             });
151 151
         }
@@ -167,11 +167,11 @@  discard block
 block discarded – undo
167 167
         $items = $this->getCurrentItems($source);
168 168
 
169 169
         collect($items)
170
-            ->filter(function ($value) {
170
+            ->filter(function($value) {
171 171
                 return isset($value['tab']);
172 172
             })
173
-            ->each(function ($value) use (&$tabs) {
174
-                if (! in_array($value['tab'], $tabs)) {
173
+            ->each(function($value) use (&$tabs) {
174
+                if (!in_array($value['tab'], $tabs)) {
175 175
                     $tabs[] = $value['tab'];
176 176
                 }
177 177
             });
Please login to merge, or discard this patch.