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 (#612)
by
unknown
05:38
created
Classes/Plugin/Feeds.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -121,16 +121,16 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.