We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -121,16 +121,16 @@ |
||
| 121 | 121 | $queryBuilder->expr()->eq('tx_dlf_collections.uid', $queryBuilder->quoteIdentifier('tx_dlf_documents_collections_mm.uid_foreign')) |
| 122 | 122 | ) |
| 123 | 123 | ->where( |
| 124 | - $queryBuilder->expr()->eq('tx_dlf_documents.pid', $queryBuilder->createNamedParameter((int)$this->conf['pages'])), |
|
| 124 | + $queryBuilder->expr()->eq('tx_dlf_documents.pid', $queryBuilder->createNamedParameter((int) $this->conf['pages'])), |
|
| 125 | 125 | $queryBuilder->expr()->eq('tx_dlf_documents_collections_mm.ident', $queryBuilder->createNamedParameter('docs_colls')), |
| 126 | - $queryBuilder->expr()->eq('tx_dlf_collections.pid', $queryBuilder->createNamedParameter((int)$this->conf['pages'])), |
|
| 126 | + $queryBuilder->expr()->eq('tx_dlf_collections.pid', $queryBuilder->createNamedParameter((int) $this->conf['pages'])), |
|
| 127 | 127 | $additionalWhere, |
| 128 | 128 | Helper::whereExpression('tx_dlf_documents'), |
| 129 | 129 | Helper::whereExpression('tx_dlf_collections') |
| 130 | 130 | ) |
| 131 | 131 | ->groupBy('tx_dlf_documents.uid') |
| 132 | 132 | ->orderBy('tx_dlf_documents.tstamp', 'DESC') |
| 133 | - ->setMaxResults((int)$this->conf['limit']) |
|
| 133 | + ->setMaxResults((int) $this->conf['limit']) |
|
| 134 | 134 | ->execute(); |
| 135 | 135 | $rows = $result->fetchAll(); |
| 136 | 136 | |