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
Push — master ( 7d8f03...4635ba )
by
unknown
03:12
created
Classes/Controller/OaiPmhController.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -205,7 +205,8 @@
 block discarded – undo
205 205
      *
206 206
      * @return void
207 207
      */
208
-    private function addDcData(&$metadata, $key, $value) {
208
+    private function addDcData(&$metadata, $key, $value)
209
+    {
209 210
         if (!empty($value)) {
210 211
             $metadata[] = [$key => $value];
211 212
         }
Please login to merge, or discard this patch.
Classes/Controller/Backend/NewTenantController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -278,7 +278,7 @@
 block discarded – undo
278 278
 
279 279
         if ($this->solrCoreRepository->findOneByPid($this->pid) === null) {
280 280
             $newRecord = GeneralUtility::makeInstance(SolrCore::class);
281
-            $newRecord->setLabel($this->getLLL('flexform.solrcore', $this->siteLanguages[0]->getTypo3Language(), $beLabels). ' (PID ' . $this->pid . ')');
281
+            $newRecord->setLabel($this->getLLL('flexform.solrcore', $this->siteLanguages[0]->getTypo3Language(), $beLabels) . ' (PID ' . $this->pid . ')');
282 282
             $indexName = Solr::createCore('');
283 283
             if (!empty($indexName)) {
284 284
                 $newRecord->setIndexName($indexName);
Please login to merge, or discard this patch.
Classes/Controller/MetadataController.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -345,7 +345,8 @@
 block discarded – undo
345 345
      *
346 346
      * @return void
347 347
      */
348
-    private function setDefault($setting, $value) {
348
+    private function setDefault($setting, $value)
349
+    {
349 350
         if (!isset($this->settings[$setting])) {
350 351
             $this->settings[$setting] = $value;
351 352
         }
Please login to merge, or discard this patch.
Classes/Controller/ToolboxController.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -435,7 +435,8 @@
 block discarded – undo
435 435
      * 
436 436
      * @return void
437 437
      */
438
-    private function setPage() {
438
+    private function setPage()
439
+    {
439 440
         if (!empty($this->requestData['logicalPage'])) {
440 441
             $this->requestData['page'] = $this->doc->getPhysicalPage($this->requestData['logicalPage']);
441 442
             // The logical page parameter should not appear again
Please login to merge, or discard this patch.