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 (#470)
by Alexander
03:28
created
Classes/Plugin/Statistics.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
                     ->where(
128 128
                         $queryBuilder->expr()->eq('tx_dlf_documents.pid', intval($this->conf['pages'])),
129 129
                         $queryBuilder->expr()->eq('tx_dlf_collections_join.pid', intval($this->conf['pages'])),
130
-                        $queryBuilder->expr()->notIn('tx_dlf_documents.uid',  $subQuery),
130
+                        $queryBuilder->expr()->notIn('tx_dlf_documents.uid', $subQuery),
131 131
                         $queryBuilder->expr()->in('tx_dlf_collections_join.uid', $queryBuilder->createNamedParameter(GeneralUtility::intExplode(',', $this->conf['collections']), Connection::PARAM_INT_ARRAY)),
132 132
                         $queryBuilder->expr()->eq('tx_dlf_relations_joins.ident', $queryBuilder->createNamedParameter('docs_colls'))
133 133
                     )
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
                 ->from('tx_dlf_documents')
169 169
                 ->where(
170 170
                     $queryBuilder->expr()->eq('tx_dlf_documents.pid', intval($this->conf['pages'])),
171
-                    $queryBuilder->expr()->notIn('tx_dlf_documents.uid',  $subQuery)
171
+                    $queryBuilder->expr()->notIn('tx_dlf_documents.uid', $subQuery)
172 172
                 )
173 173
                 ->execute()
174 174
                 ->fetchColumn(0);
Please login to merge, or discard this patch.