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 — dev-extbase-fluid (#746)
by Alexander
08:09
created
Classes/Command/HarvestCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -240,10 +240,10 @@
 block discarded – undo
240 240
                 }
241 241
 
242 242
                 if ($dryRun) {
243
-                    $io->writeln('DRY RUN: Would index ' .  $document->getUid() . ' ("' . $document->getLocation() . '") on PID ' . $this->storagePid . ' and Solr core ' . $solrCoreUid . '.');
243
+                    $io->writeln('DRY RUN: Would index ' . $document->getUid() . ' ("' . $document->getLocation() . '") on PID ' . $this->storagePid . ' and Solr core ' . $solrCoreUid . '.');
244 244
                 } else {
245 245
                     if ($io->isVerbose()) {
246
-                        $io->writeln(date('Y-m-d H:i:s') . ' Indexing ' .  $document->getUid() . ' ("' . $document->getLocation() . '") on PID ' . $this->storagePid . ' and Solr core ' . $solrCoreUid . '.');
246
+                        $io->writeln(date('Y-m-d H:i:s') . ' Indexing ' . $document->getUid() . ' ("' . $document->getLocation() . '") on PID ' . $this->storagePid . ' and Solr core ' . $solrCoreUid . '.');
247 247
                     }
248 248
                     // ...and save it to the database...
249 249
                     $this->saveToDatabase($document);
Please login to merge, or discard this patch.
Classes/Domain/Repository/DocumentRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     public function findOneByParameters($parameters)
39 39
     {
40 40
         $doc = null;
41
-        $document =null;
41
+        $document = null;
42 42
 
43 43
         if (isset($parameters['id']) && MathUtility::canBeInterpretedAsInteger($parameters['id'])) {
44 44
 
Please login to merge, or discard this patch.
Classes/Common/Indexer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@
 block discarded – undo
161 161
             } catch (\Exception $e) {
162 162
                 if (!(\TYPO3_REQUESTTYPE & \TYPO3_REQUESTTYPE_CLI)) {
163 163
                     Helper::addMessage(
164
-                        Helper::getMessage('flash.solrException', true) . ' '. htmlspecialchars($e->getMessage()),
164
+                        Helper::getMessage('flash.solrException', true) . ' ' . htmlspecialchars($e->getMessage()),
165 165
                         Helper::getMessage('flash.error', true),
166 166
                         FlashMessage::ERROR,
167 167
                         true,
Please login to merge, or discard this patch.