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 ( 2a1bd9...543daf )
by
unknown
04:19
created
Classes/Common/MetsDocument.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -461,7 +461,7 @@  discard block
 block discarded – undo
461 461
         $cPid = max($cPid, 0);
462 462
         if ($cPid == 0 && ($this->cPid || $this->pid)) {
463 463
             // Retain current PID.
464
-            $cPid = $this->cPid ?: $this->pid;
464
+            $cPid = $this->cPid ? : $this->pid;
465 465
         }
466 466
         return $cPid;
467 467
     }
@@ -881,7 +881,7 @@  discard block
 block discarded – undo
881 881
 
882 882
         return array_filter(
883 883
             $allMdIds,
884
-            function ($element) {
884
+            function($element) {
885 885
                 return !empty($element);
886 886
             }
887 887
         );
@@ -1273,7 +1273,7 @@  discard block
 block discarded – undo
1273 1273
             || $forceReload
1274 1274
         ) {
1275 1275
             // Retain current PID.
1276
-            $cPid = $this->cPid ?: $this->pid;
1276
+            $cPid = $this->cPid ? : $this->pid;
1277 1277
             if (!$cPid) {
1278 1278
                 $this->logger->error('Invalid PID ' . $cPid . ' for structure definitions');
1279 1279
                 $this->thumbnailLoaded = true;
Please login to merge, or discard this patch.