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 ( 5fcc99...e2fc25 )
by
unknown
03:23
created
Classes/Controller/SearchController.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
         $listRequestData = GeneralUtility::_GPmerged('tx_dlf_listview');
103 103
 
104 104
         if (isset($listRequestData['searchParameter']) && is_array($listRequestData['searchParameter'])) {
105
-            $this->searchParams = array_merge($this->searchParams ?: [], $listRequestData['searchParameter']);
105
+            $this->searchParams = array_merge($this->searchParams ? : [], $listRequestData['searchParameter']);
106 106
             $listViewSearch = true;
107 107
             $GLOBALS['TSFE']->fe_user->setKey('ses', 'search', $this->searchParams);
108 108
         }
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -358,7 +358,8 @@  discard block
 block discarded – undo
358 358
      *
359 359
      * @return string The collection query string
360 360
      */
361
-    private function addCollectionsQuery($query) {
361
+    private function addCollectionsQuery($query)
362
+    {
362 363
         // if collections are given, we prepare the collections query string
363 364
         // extract collections from collection parameter
364 365
         $collections = null;
@@ -453,7 +454,8 @@  discard block
 block discarded – undo
453 454
      *
454 455
      * @return array menu array
455 456
      */
456
-    private function processResults($facet, $facetCollectionArray, $search) {
457
+    private function processResults($facet, $facetCollectionArray, $search)
458
+    {
457 459
         $menuArray = [];
458 460
 
459 461
         if ($facet) {
Please login to merge, or discard this patch.