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 ( 8d2129...ef3d45 )
by
unknown
03:36
created
Classes/Controller/NavigationController.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      *
34 34
      * @return void
35 35
      */
36
-    public function pageSelectAction(PageSelectForm $pageSelectForm = NULL): void
36
+    public function pageSelectAction(PageSelectForm $pageSelectForm = null): void
37 37
     {
38 38
         if ($pageSelectForm) {
39 39
             $uri = $this->uriBuilder->reset()
Please login to merge, or discard this patch.
Classes/Controller/TableOfContentsController.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
                 }
320 320
             }
321 321
         }
322
-        return $entry['label'] ?: $entry['orderlabel'];
322
+        return $entry['label'] ? : $entry['orderlabel'];
323 323
     }
324 324
 
325 325
     /**
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
      */
353 353
     private function sortSubMenu(array &$menu): void
354 354
     {
355
-        usort($menu[0]['_SUB_MENU'], function ($firstElement, $secondElement) {
355
+        usort($menu[0]['_SUB_MENU'], function($firstElement, $secondElement) {
356 356
             if (!empty($firstElement['orderlabel'])) {
357 357
                 return $firstElement['orderlabel'] <=> $secondElement['orderlabel'];
358 358
             }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -352,7 +352,8 @@
 block discarded – undo
352 352
      */
353 353
     private function sortSubMenu(array &$menu): void
354 354
     {
355
-        usort($menu[0]['_SUB_MENU'], function ($firstElement, $secondElement) {
355
+        usort($menu[0]['_SUB_MENU'], function ($firstElement, $secondElement)
356
+        {
356 357
             if (!empty($firstElement['orderlabel'])) {
357 358
                 return $firstElement['orderlabel'] <=> $secondElement['orderlabel'];
358 359
             }
Please login to merge, or discard this patch.