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 (#744)
by
unknown
03:13
created
Classes/Common/AbstractModule.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
         if (!$this->MCONF['name']) {
160 160
             $this->MCONF = $GLOBALS['MCONF'];
161 161
         }
162
-        $this->id = (int)GeneralUtility::_GP('id');
162
+        $this->id = (int) GeneralUtility::_GP('id');
163 163
         $this->CMD = GeneralUtility::_GP('CMD');
164 164
         $this->perms_clause = $this->getBackendUser()->getPagePermsClause(1);
165 165
         $this->menuConfig();
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
         $mergeArray = $GLOBALS['TBE_MODULES_EXT'][$modName]['MOD_MENU'][$menuKey];
230 230
         if (is_array($mergeArray)) {
231 231
             foreach ($mergeArray as $k => $v) {
232
-                if (((string)$v['ws'] === '' || $this->getBackendUser()->workspace === 0 && GeneralUtility::inList($v['ws'], 'online')) || $this->getBackendUser()->workspace === -1 && GeneralUtility::inList($v['ws'], 'offline') || $this->getBackendUser()->workspace > 0 && GeneralUtility::inList($v['ws'], 'custom')) {
232
+                if (((string) $v['ws'] === '' || $this->getBackendUser()->workspace === 0 && GeneralUtility::inList($v['ws'], 'online')) || $this->getBackendUser()->workspace === -1 && GeneralUtility::inList($v['ws'], 'offline') || $this->getBackendUser()->workspace > 0 && GeneralUtility::inList($v['ws'], 'custom')) {
233 233
                     $menuArr[$k] = $this->getLanguageService()->sL($v['title']);
234 234
                 }
235 235
             }
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
     public function getExternalItemConfig($modName, $menuKey, $value = '')
266 266
     {
267 267
         if (isset($GLOBALS['TBE_MODULES_EXT'][$modName])) {
268
-            return (string)$value !== '' ? $GLOBALS['TBE_MODULES_EXT'][$modName]['MOD_MENU'][$menuKey][$value] : $GLOBALS['TBE_MODULES_EXT'][$modName]['MOD_MENU'][$menuKey];
268
+            return (string) $value !== '' ? $GLOBALS['TBE_MODULES_EXT'][$modName]['MOD_MENU'][$menuKey][$value] : $GLOBALS['TBE_MODULES_EXT'][$modName]['MOD_MENU'][$menuKey];
269 269
         }
270 270
         return null;
271 271
     }
Please login to merge, or discard this patch.