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 (#389)
by
unknown
03:34
created
Classes/Common/Solr.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
                     $queryBuilder->expr()->eq('tx_dlf_metadata.index_indexed', 1),
146 146
                     $queryBuilder->expr()->eq('tx_dlf_metadata.pid', intval($pid)),
147 147
                     $queryBuilder->expr()->orX(
148
-                        $queryBuilder->expr()->in('tx_dlf_metadata.sys_language_uid', array(-1, 0)),
148
+                        $queryBuilder->expr()->in('tx_dlf_metadata.sys_language_uid', array (-1, 0)),
149 149
                         $queryBuilder->expr()->eq('tx_dlf_metadata.l18n_parent', 0)
150 150
                     ),
151 151
                     Helper::whereExpression('tx_dlf_metadata')
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
                 ->execute();
154 154
 
155 155
             while ($resArray = $result->fetch()) {
156
-                $fields[] = $resArray[0] . '_' . ($resArray[1] ? 't' : 'u') . ($resArray[2] ? 's' : 'u') . 'i';
156
+                $fields[] = $resArray[0].'_'.($resArray[1] ? 't' : 'u').($resArray[2] ? 's' : 'u').'i';
157 157
             }
158 158
 
159 159
             // Check if queried field is valid.
Please login to merge, or discard this patch.