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 (#503)
by Sebastian
03:10
created
Classes/Plugin/OaiPmh.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
             ->delete('tx_dlf_tokens')
88 88
             ->where(
89 89
                 $queryBuilder->expr()->eq('tx_dlf_tokens.ident', $queryBuilder->createNamedParameter('oai')),
90
-                $queryBuilder->expr()->lt('tx_dlf_tokens.tstamp', $queryBuilder->createNamedParameter((int)($GLOBALS['EXEC_TIME'] - $this->conf['expired'])))
90
+                $queryBuilder->expr()->lt('tx_dlf_tokens.tstamp', $queryBuilder->createNamedParameter((int) ($GLOBALS['EXEC_TIME'] - $this->conf['expired'])))
91 91
             )
92 92
             ->execute();
93 93
 
@@ -483,8 +483,8 @@  discard block
 block discarded – undo
483 483
 
484 484
         $statement = $connection->prepare($sql);
485 485
         $statement->bindValue(1, $this->piVars['identifier']);
486
-        $statement->bindValue(2, (int)$this->conf['pages']);
487
-        $statement->bindValue(3, (int)$this->conf['pages']);
486
+        $statement->bindValue(2, (int) $this->conf['pages']);
487
+        $statement->bindValue(3, (int) $this->conf['pages']);
488 488
         $statement->execute();
489 489
 
490 490
         $resArray = $statement->fetch();
@@ -946,7 +946,7 @@  discard block
 block discarded – undo
946 946
      */
947 947
     protected function generateOutputForDocumentList(DocumentList $documentListSet)
948 948
     {
949
-        $documentsToProcess = $documentListSet->removeRange(0, (int)$this->conf['limit']);
949
+        $documentsToProcess = $documentListSet->removeRange(0, (int) $this->conf['limit']);
950 950
         $verb = $this->piVars['verb'];
951 951
 
952 952
         $connection = GeneralUtility::makeInstance(ConnectionPool::class)->getConnectionForTable('tx_dlf_documents');
@@ -965,9 +965,9 @@  discard block
 block discarded – undo
965 965
 
966 966
         $documents = $connection->prepare($sql);
967 967
         $documents->bindValue(1, implode(',', $documentsToProcess));
968
-        $documents->bindValue(2, (int)$this->conf['pages']);
969
-        $documents->bindValue(3, (int)$this->conf['pages']);
970
-        $documents->bindValue(4, (int)$this->conf['limit']);
968
+        $documents->bindValue(2, (int) $this->conf['pages']);
969
+        $documents->bindValue(3, (int) $this->conf['pages']);
970
+        $documents->bindValue(4, (int) $this->conf['limit']);
971 971
         $documents->execute();
972 972
 
973 973
         $output = $this->oai->createElementNS('http://www.openarchives.org/OAI/2.0/', $verb);
Please login to merge, or discard this patch.