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 (#835)
by
unknown
04:00
created
Classes/Common/MetsDocument.php 1 patch
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -613,8 +613,7 @@  discard block
 block discarded – undo
613 613
                 ) {
614 614
                     $metadata[$resArray['index_name']] = [];
615 615
                     foreach ($values as $value) {
616
-                        if ($subentries = $this->getSubentries($allSubentries, $resArray['index_name'], $value)) 
617
-                        {
616
+                        if ($subentries = $this->getSubentries($allSubentries, $resArray['index_name'], $value)) {
618 617
                             $metadata[$resArray['index_name']][] = $subentries;
619 618
                         } else {
620 619
                             $metadata[$resArray['index_name']][] = trim((string)$value->nodeValue);
@@ -674,10 +673,8 @@  discard block
 block discarded – undo
674 673
         $domXPath = new \DOMXPath($parentNode->ownerDocument);
675 674
         $this->registerNamespaces($domXPath);
676 675
         $theseSubentries = [];
677
-        foreach ($allSubentries as $subentry) 
678
-        {
679
-            if ($subentry['parent_index_name'] == $parentIndex) 
680
-            {
676
+        foreach ($allSubentries as $subentry) {
677
+            if ($subentry['parent_index_name'] == $parentIndex) {
681 678
                 if (
682 679
                     !empty($subentry['xpath'])
683 680
                     && ($values = $domXPath->evaluate($subentry['xpath'], $parentNode))
@@ -703,8 +700,7 @@  discard block
 block discarded – undo
703 700
                 }
704 701
             }
705 702
         }
706
-        if (empty($theseSubentries)) 
707
-        {
703
+        if (empty($theseSubentries)) {
708 704
             return false;
709 705
         }
710 706
         return $theseSubentries;
Please login to merge, or discard this patch.