We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -87,7 +87,7 @@ discard block |
||
| 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 | |
@@ -482,8 +482,8 @@ discard block |
||
| 482 | 482 | |
| 483 | 483 | $statement = $connection->prepare($sql); |
| 484 | 484 | $statement->bindValue(1, $this->piVars['identifier']); |
| 485 | - $statement->bindValue(2, (int)$this->conf['pages']); |
|
| 486 | - $statement->bindValue(3, (int)$this->conf['pages']); |
|
| 485 | + $statement->bindValue(2, (int) $this->conf['pages']); |
|
| 486 | + $statement->bindValue(3, (int) $this->conf['pages']); |
|
| 487 | 487 | $statement->execute(); |
| 488 | 488 | |
| 489 | 489 | $resArray = $statement->fetch(); |
@@ -946,7 +946,7 @@ discard block |
||
| 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) |