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
Push — master ( f41617...cd6bf0 )
by Sebastian
03:50 queued 15s
created
Classes/Plugin/Search.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -552,14 +552,14 @@
 block discarded – undo
552 552
         $results = $solr->service->select($selectQuery);
553 553
         $facet = $results->getFacetSet();
554 554
 
555
-        $facetCollectionArray = array();
555
+        $facetCollectionArray = array ();
556 556
 
557 557
         // replace everything expect numbers and comma
558 558
         $facetCollections = preg_replace('/[^0-9,]/', '', $this->conf['facetCollections']);
559 559
         $result = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
560 560
             'tx_dlf_collections.index_name AS index_name',
561 561
             'tx_dlf_collections',
562
-            'tx_dlf_collections.uid IN (' . $facetCollections . ')'
562
+            'tx_dlf_collections.uid IN ('.$facetCollections.')'
563 563
                 .Helper::whereClause('tx_dlf_collections')
564 564
         );
565 565
 
Please login to merge, or discard this patch.
class.ext_update.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -364,10 +364,10 @@
 block discarded – undo
364 364
         );
365 365
         while ($resArray = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($result)) {
366 366
             if ($resArray['COLUMN_NAME'] == 'document_format') {
367
-                return false;
367
+                return FALSE;
368 368
             }
369 369
         }
370
-        return true;
370
+        return TRUE;
371 371
     }
372 372
 
373 373
     protected function updateDocumentAddFormat() {
Please login to merge, or discard this patch.