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 (#4884)
by Pedro
11:51
created
src/app/Library/CrudPanel/Traits/Query.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     public function getQuery(string $query)
66 66
     {
67
-        abort_if(! $this->hasQuery($query), 500, 'Trying to get an unexisting query.');
67
+        abort_if(!$this->hasQuery($query), 500, 'Trying to get an unexisting query.');
68 68
 
69 69
         return $this->ranQueries[$query];
70 70
     }
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      */
149 149
     public function customOrderBy($column, $columnDirection = 'asc')
150 150
     {
151
-        if (! isset($column['orderLogic'])) {
151
+        if (!isset($column['orderLogic'])) {
152 152
             return $this->query;
153 153
         }
154 154
 
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
      */
239 239
     public function getTotalQueryCount()
240 240
     {
241
-        if (! $this->getOperationSetting('showEntryCount')) {
241
+        if (!$this->getOperationSetting('showEntryCount')) {
242 242
             return 0;
243 243
         }
244 244
 
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
      */
278 278
     private function getCountFromQuery(Builder $query)
279 279
     {
280
-        if (! $this->driverIsSql()) {
280
+        if (!$this->driverIsSql()) {
281 281
             return $query->count();
282 282
         }
283 283
 
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
         $expressionColumns = [];
297 297
 
298 298
         foreach ($crudQuery->columns ?? [] as $column) {
299
-            if (! is_string($column) && is_a($column, 'Illuminate\Database\Query\Expression')) {
299
+            if (!is_string($column) && is_a($column, 'Illuminate\Database\Query\Expression')) {
300 300
                 $expressionColumns[] = $column;
301 301
             }
302 302
         }
Please login to merge, or discard this patch.