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
Branch master (9641fa)
by Sebastian
06:33
created
Classes/Common/MetsDocument.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -295,14 +295,16 @@
 block discarded – undo
295 295
         } elseif (
296 296
             !empty($this->physicalStructure)
297 297
             && array_key_exists($details['id'], $this->smLinks['l2p'])
298
-        ) { // Are there any physical elements and is this logical unit linked to at least one of them?
298
+        ) {
299
+// Are there any physical elements and is this logical unit linked to at least one of them?
299 300
             $details['points'] = max(intval(array_search($this->smLinks['l2p'][$details['id']][0], $this->physicalStructure, TRUE)), 1);
300 301
             if (!empty($this->physicalStructureInfo[$this->smLinks['l2p'][$details['id']][0]]['files'][$extConf['fileGrpThumbs']])) {
301 302
                 $details['thumbnailId'] = $this->physicalStructureInfo[$this->smLinks['l2p'][$details['id']][0]]['files'][$extConf['fileGrpThumbs']];
302 303
             }
303 304
             // Get page/track number of the first page/track related to this structure element.
304 305
             $details['pagination'] = $this->physicalStructureInfo[$this->smLinks['l2p'][$details['id']][0]]['orderlabel'];
305
-        } elseif ($details['id'] == $this->_getToplevelId()) { // Is this the toplevel structure element?
306
+        } elseif ($details['id'] == $this->_getToplevelId()) {
307
+// Is this the toplevel structure element?
306 308
             // Yes. Point to itself.
307 309
             $details['points'] = 1;
308 310
             if (
Please login to merge, or discard this patch.