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 (#803)
by Beatrycze
03:45
created
Classes/Controller/TableOfContentsController.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -308,7 +308,7 @@
 block discarded – undo
308 308
         $entryArray['doNotLinkIt'] = 1;
309 309
         $entryArray['ITEM_STATE'] = 'HEADER';
310 310
 
311
-        if ($entry['children'] == NULL) {
311
+        if ($entry['children'] == null) {
312 312
             $entryArray['description'] = $entry['description'];
313 313
             $id = str_replace("LOG", "PHYS", $entry['id']);
314 314
             $entryArray['image'] = $this->document->getDoc()->getFileLocation($this->document->getDoc()->physicalStructureInfo[$id]['files']['THUMBS']);
Please login to merge, or discard this patch.
Classes/Controller/AbstractController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
                     }
143 143
 
144 144
                     //it looks that for not loaded from database it is always 0, so needs to be set up on load
145
-                    if($doc->cPid == 0) {
145
+                    if ($doc->cPid == 0) {
146 146
                         $doc->cPid = max(intval($this->settings['storagePid']), 0);
147 147
                     }
148 148
                     
Please login to merge, or discard this patch.