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 (#587)
by Alexander
04:29 queued 01:21
created
Classes/Plugin/Eid/SearchInDocument.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,6 +104,6 @@
 block discarded – undo
104 104
     }
105 105
 
106 106
     private function getUid($uid) {
107
-        return intval($uid) > 0  ? intval($uid) : $uid;
107
+        return intval($uid) > 0 ? intval($uid) : $uid;
108 108
     }
109 109
 }
Please login to merge, or discard this patch.
Classes/Common/DocumentList.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -235,7 +235,7 @@
 block discarded – undo
235 235
                     $fields = Solr::getFields();
236 236
                     $params = [];
237 237
                     // Restrict the fields to the required ones
238
-                    $params['fields'] = $fields['uid'] . ',' . $fields['id'] .',' . $fields['toplevel'] . ',' . $fields['thumbnail'] . ',' . $fields['page'];
238
+                    $params['fields'] = $fields['uid'] . ',' . $fields['id'] . ',' . $fields['toplevel'] . ',' . $fields['thumbnail'] . ',' . $fields['page'];
239 239
                     foreach ($this->solrConfig as $solr_name) {
240 240
                         $params['fields'] .= ',' . $solr_name;
241 241
                     }
Please login to merge, or discard this patch.
Classes/Plugin/Tools/SearchInDocumentTool.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
             '###LABEL_HIGHLIGHT_WORD###' => $this->conf['highlightWordInputName'],
114 114
             '###LABEL_ENCRYPTED###' => $this->conf['encryptedInputName'],
115 115
             '###CURRENT_DOCUMENT###' => $this->getCurrentDocumentId(),
116
-            '###SOLR_ENCRYPTED###' => $this->getEncryptedCoreName() ?: '',
116
+            '###SOLR_ENCRYPTED###' => $this->getEncryptedCoreName() ? : '',
117 117
         ];
118 118
 
119 119
         $content .= $this->templateService->substituteMarkerArray($this->template, $markerArray);
Please login to merge, or discard this patch.
Classes/Plugin/Search.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -461,12 +461,12 @@
 block discarded – undo
461 461
                     && \TYPO3\CMS\Core\Utility\MathUtility::canBeInterpretedAsInteger($this->piVars['id'])
462 462
                 ) {
463 463
                     $params['filterquery'][]['query'] = '_query_:"{!join from='
464
-                        . $fields['uid'] .' to=' . $fields['partof'] .'}'
465
-                        . $fields['uid'] .':{!join from=' . $fields['uid'] .' to=' . $fields['partof'] .'}'
466
-                        . $fields['uid'] .':' . $this->piVars['id'] . '"' . ' OR {!join from='
467
-                        . $fields['uid'] .' to=' . $fields['partof'] .'}'
468
-                        . $fields['uid'] .':' . $this->piVars['id'] . ' OR '
469
-                        . $fields['uid'] .':' . $this->piVars['id'];
464
+                        . $fields['uid'] . ' to=' . $fields['partof'] . '}'
465
+                        . $fields['uid'] . ':{!join from=' . $fields['uid'] . ' to=' . $fields['partof'] . '}'
466
+                        . $fields['uid'] . ':' . $this->piVars['id'] . '"' . ' OR {!join from='
467
+                        . $fields['uid'] . ' to=' . $fields['partof'] . '}'
468
+                        . $fields['uid'] . ':' . $this->piVars['id'] . ' OR '
469
+                        . $fields['uid'] . ':' . $this->piVars['id'];
470 470
                     $label .= htmlspecialchars(sprintf($this->pi_getLL('in', ''), Document::getTitle($this->piVars['id'])));
471 471
                 }
472 472
             }
Please login to merge, or discard this patch.