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 (#451)
by Alexander
06:01
created
Classes/Common/MetsDocument.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -465,12 +465,12 @@  discard block
 block discarded – undo
465 465
             // First all metadata with configured xpath.
466 466
             $result = $queryBuilder
467 467
                 ->select(
468
-                  'tx_dlf_metadata.index_name AS index_name',
469
-                  'tx_dlf_metadataformat_joins.xpath AS xpath',
470
-                  'tx_dlf_metadataformat_joins.xpath_sorting AS xpath_sorting',
471
-                  'tx_dlf_metadata.is_sortable AS is_sortable',
472
-                  'tx_dlf_metadata.default_value AS default_value',
473
-                  'tx_dlf_metadata.format AS format'
468
+                    'tx_dlf_metadata.index_name AS index_name',
469
+                    'tx_dlf_metadataformat_joins.xpath AS xpath',
470
+                    'tx_dlf_metadataformat_joins.xpath_sorting AS xpath_sorting',
471
+                    'tx_dlf_metadata.is_sortable AS is_sortable',
472
+                    'tx_dlf_metadata.default_value AS default_value',
473
+                    'tx_dlf_metadata.format AS format'
474 474
                 )
475 475
                 ->from('tx_dlf_metadata')
476 476
                 ->innerJoin(
@@ -512,10 +512,10 @@  discard block
 block discarded – undo
512 512
 
513 513
                 $result2 = $queryBuilder
514 514
                     ->select(
515
-                      'tx_dlf_metadata.index_name AS index_name',
516
-                      'tx_dlf_metadata.is_sortable AS is_sortable',
517
-                      'tx_dlf_metadata.default_value AS default_value',
518
-                      'tx_dlf_metadata.format AS format'
515
+                        'tx_dlf_metadata.index_name AS index_name',
516
+                        'tx_dlf_metadata.is_sortable AS is_sortable',
517
+                        'tx_dlf_metadata.default_value AS default_value',
518
+                        'tx_dlf_metadata.format AS format'
519 519
                     )
520 520
                     ->from('tx_dlf_metadata')
521 521
                     ->where(
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -534,7 +534,7 @@
 block discarded – undo
534 534
             $domXPath = new \DOMXPath($domNode->ownerDocument);
535 535
             $this->registerNamespaces($domXPath);
536 536
             // OK, now make the XPath queries.
537
-            foreach ($allResults AS $resArray) {
537
+            foreach ($allResults as $resArray) {
538 538
 
539 539
                 // Set metadata field's value(s).
540 540
                 if (
Please login to merge, or discard this patch.