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 ( fb3f2a...140db8 )
by Sebastian
02:48
created
Classes/Plugin/ListView.php 1 patch
Braces   +12 added lines, -6 removed lines patch added patch discarded remove patch
@@ -161,11 +161,14 @@  discard block
 block discarded – undo
161 161
                             'additionalParams' => \TYPO3\CMS\Core\Utility\GeneralUtility::implodeArrayForUrl($this->prefixId, $additionalParams, '', TRUE, FALSE)
162 162
                         ];
163 163
                         $value = $this->cObj->typoLink(htmlspecialchars($value), $conf);
164
-                    } elseif ($index_name == 'owner' && !empty($value)) { // Translate name of holding library.
164
+                    } elseif ($index_name == 'owner' && !empty($value)) {
165
+// Translate name of holding library.
165 166
                         $value = htmlspecialchars(Helper::translate($value, 'tx_dlf_libraries', $this->conf['pages']));
166
-                    } elseif ($index_name == 'type' && !empty($value)) { // Translate document type.
167
+                    } elseif ($index_name == 'type' && !empty($value)) {
168
+// Translate document type.
167 169
                         $value = htmlspecialchars(Helper::translate($value, 'tx_dlf_structures', $this->conf['pages']));
168
-                    } elseif ($index_name == 'language' && !empty($value)) { // Translate ISO 639 language code.
170
+                    } elseif ($index_name == 'language' && !empty($value)) {
171
+// Translate ISO 639 language code.
169 172
                         $value = htmlspecialchars(Helper::getLanguageName($value));
170 173
                     } elseif (!empty($value)) {
171 174
                         $value = htmlspecialchars($value);
@@ -327,16 +330,19 @@  discard block
 block discarded – undo
327 330
                             'additionalParams' => \TYPO3\CMS\Core\Utility\GeneralUtility::implodeArrayForUrl($this->prefixId, $additionalParams, '', TRUE, FALSE)
328 331
                         ];
329 332
                         $value = $this->cObj->typoLink(htmlspecialchars($value), $conf);
330
-                    } elseif ($index_name == 'owner' && !empty($value)) { // Translate name of holding library.
333
+                    } elseif ($index_name == 'owner' && !empty($value)) {
334
+// Translate name of holding library.
331 335
                         $value = htmlspecialchars(Helper::translate($value, 'tx_dlf_libraries', $this->conf['pages']));
332
-                    } elseif ($index_name == 'type' && !empty($value)) { // Translate document type.
336
+                    } elseif ($index_name == 'type' && !empty($value)) {
337
+// Translate document type.
333 338
                         $_value = $value;
334 339
                         $value = htmlspecialchars(Helper::translate($value, 'tx_dlf_structures', $this->conf['pages']));
335 340
                         // Add page number for single pages.
336 341
                         if ($_value == 'page') {
337 342
                             $value .= ' '.intval($subpart['page']);
338 343
                         }
339
-                    } elseif ($index_name == 'language' && !empty($value)) { // Translate ISO 639 language code.
344
+                    } elseif ($index_name == 'language' && !empty($value)) {
345
+// Translate ISO 639 language code.
340 346
                         $value = htmlspecialchars(Helper::getLanguageName($value));
341 347
                     } elseif (!empty($value)) {
342 348
                         $value = htmlspecialchars($value);
Please login to merge, or discard this patch.