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

GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Pull Request — dev-extbase-fluid (#754)
by Alexander
02:53
created
Classes/Controller/SearchController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -227,7 +227,7 @@
 block discarded – undo
227 227
         }
228 228
 
229 229
         if (isset($this->searchParams['fq']) && is_array($this->searchParams['fq'])) {
230
-            foreach($this->searchParams['fq'] as $fq) {
230
+            foreach ($this->searchParams['fq'] as $fq) {
231 231
                 $search['params']['filterquery'][]['query'] = $fq;
232 232
             }
233 233
         }
Please login to merge, or discard this patch.
Classes/Domain/Repository/DocumentRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -617,7 +617,7 @@
 block discarded – undo
617 617
             $collecionsQueryString = $collection->getIndexName();
618 618
             $params['filterquery'][]['query'] = 'toplevel:true';
619 619
             $params['filterquery'][]['query'] = 'partof:0';
620
-            $params['filterquery'][]['query'] = 'collection_faceting:("' . $collecionsQueryString .'")';
620
+            $params['filterquery'][]['query'] = 'collection_faceting:("' . $collecionsQueryString . '")';
621 621
         }
622 622
 
623 623
         // Set some query parameters.
Please login to merge, or discard this patch.
Classes/Controller/MetadataController.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -280,7 +280,9 @@
 block discarded – undo
280 280
                     }
281 281
 
282 282
                     if (is_array($metadataArray[$i][$metadataName])) {
283
-                        $metadataArray[$i][$metadataName] = array_values(array_filter($metadataArray[$i][$metadataName], function($x) { return !empty($x); }));
283
+                        $metadataArray[$i][$metadataName] = array_values(array_filter($metadataArray[$i][$metadataName], function($x)
284
+                        {
285
+return !empty($x); }));
284 286
                     }
285 287
                 }
286 288
                 $i++;
Please login to merge, or discard this patch.