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.

Code Duplication    Length = 11-12 lines in 2 locations

dlf/common/class.tx_dlf_helper.php 1 location

@@ 271-281 (lines=11) @@
268
269
		}
270
271
		if (empty($GLOBALS['TYPO3_CONF_VARS']['SYS']['encryptionKey'])) {
272
273
			if (TYPO3_DLOG) {
274
275
				\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_helper->decrypt('.$encrypted.', '.$hash.')] No encryption key set in TYPO3 configuration', self::$extKey, SYSLOG_SEVERITY_ERROR);
276
277
			}
278
279
			return;
280
281
		}
282
283
		$iv = substr(md5($GLOBALS['TYPO3_CONF_VARS']['SYS']['encryptionKey']), 0, mcrypt_get_iv_size(MCRYPT_BLOWFISH, MCRYPT_MODE_CFB));
284

dlf/common/class.tx_dlf_document.php 1 location

@@ 1350-1361 (lines=12) @@
1347
1348
			list ($structure) = $GLOBALS['TYPO3_DB']->sql_fetch_row($result);
1349
1350
		} else {
1351
1352
			if (TYPO3_DLOG) {
1353
1354
				\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_document->save('.$_pid.', '.$_core.')] Could not identify document/structure type ' . $GLOBALS['TYPO3_DB']->fullQuoteStr($metadata['type'][0], 'tx_dlf_structures'),
1355
									       self::$extKey, SYSLOG_SEVERITY_ERROR);
1356
1357
			}
1358
1359
			return FALSE;
1360
1361
		}
1362
1363
		$metadata['type'][0] = $structure;
1364