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 = 13-13 lines in 2 locations

dlf/common/class.tx_dlf_document.php 2 locations

@@ 2225-2237 (lines=13) @@
2222
			// Retain current PID.
2223
			$cPid = ($this->cPid ? $this->cPid : $this->pid);
2224
2225
			if (!$cPid) {
2226
2227
				if (TYPO3_DLOG) {
2228
2229
					\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_document->_getThumbnail()] Invalid PID "'.$cPid.'" for structure definitions', self::$extKey, SYSLOG_SEVERITY_ERROR);
2230
2231
				}
2232
2233
				$this->thumbnailLoaded = TRUE;
2234
2235
				return $this->thumbnail;
2236
2237
			}
2238
2239
			// Load extension configuration.
2240
			$extConf = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf'][self::$extKey]);
@@ 2242-2254 (lines=13) @@
2239
			// Load extension configuration.
2240
			$extConf = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf'][self::$extKey]);
2241
2242
			if (empty($extConf['fileGrpThumbs'])) {
2243
2244
				if (TYPO3_DLOG) {
2245
2246
					\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_document->_getThumbnail()] No fileGrp for thumbnails specified', self::$extKey, SYSLOG_SEVERITY_WARNING);
2247
2248
				}
2249
2250
				$this->thumbnailLoaded = TRUE;
2251
2252
				return $this->thumbnail;
2253
2254
			}
2255
2256
			$strctId = $this->_getToplevelId();
2257