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 — master (#885)
by
unknown
08:26
created
Classes/Controller/PageGridController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
         $pageGridPagination = new PageGridPagination($pageGridPaginator);
71 71
 
72 72
         $pagination = $this->buildSimplePagination($pageGridPagination, $pageGridPaginator);
73
-        $this->view->assignMultiple([ 'pagination' => $pagination, 'paginator' => $pageGridPaginator ]);
73
+        $this->view->assignMultiple(['pagination' => $pagination, 'paginator' => $pageGridPaginator]);
74 74
 
75 75
         $this->view->assign('docUid', $this->requestData['id']);
76 76
     }
Please login to merge, or discard this patch.
Classes/Controller/ListViewController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
         // extract collection(s) from collection parameter
75 75
         $collection = null;
76 76
         if ($this->searchParams['collection']) {
77
-            foreach(explode(',', $this->searchParams['collection']) as $collectionEntry) {
77
+            foreach (explode(',', $this->searchParams['collection']) as $collectionEntry) {
78 78
                 $collection[] = $this->collectionRepository->findByUid($collectionEntry);
79 79
             }
80 80
         }
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
             $simplePagination = new SimplePagination($solrPaginator);
107 107
 
108 108
             $pagination = $this->buildSimplePagination($simplePagination, $solrPaginator);
109
-            $this->view->assignMultiple([ 'pagination' => $pagination, 'paginator' => $solrPaginator ]);
109
+            $this->view->assignMultiple(['pagination' => $pagination, 'paginator' => $solrPaginator]);
110 110
         }
111 111
 
112 112
         $this->view->assign('viewData', $this->viewData);
Please login to merge, or discard this patch.