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 ( b34a1c...06de54 )
by Sebastian
03:26 queued 50s
created
dlf/common/class.tx_dlf_document.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -568,7 +568,7 @@  discard block
 block discarded – undo
568 568
 
569 569
 		$details['id'] = $attributes['ID'];
570 570
 
571
-		$details['dmdId'] = (isset($attributes['DMDID']) ?  $attributes['DMDID'] : '');
571
+		$details['dmdId'] = (isset($attributes['DMDID']) ? $attributes['DMDID'] : '');
572 572
 
573 573
 		$details['label'] = (isset($attributes['LABEL']) ? $attributes['LABEL'] : '');
574 574
 
@@ -917,7 +917,7 @@  discard block
 block discarded – undo
917 917
 	 */
918 918
 	public function getPhysicalPage($logicalPage) {
919 919
 
920
-		if(!empty( $this->lastSearchedPhysicalPage['logicalPage']) &&  $this->lastSearchedPhysicalPage['logicalPage'] == $logicalPage) {
920
+		if (!empty($this->lastSearchedPhysicalPage['logicalPage']) && $this->lastSearchedPhysicalPage['logicalPage'] == $logicalPage) {
921 921
 
922 922
 			return $this->lastSearchedPhysicalPage['physicalPage'];
923 923
 
@@ -925,9 +925,9 @@  discard block
 block discarded – undo
925 925
 
926 926
 			$physicalPage = 0;
927 927
 
928
-			foreach($this->physicalStructureInfo as $page) {
928
+			foreach ($this->physicalStructureInfo as $page) {
929 929
 
930
-				if(strpos($page['orderlabel'], $logicalPage) !== false){
930
+				if (strpos($page['orderlabel'], $logicalPage) !== false) {
931 931
 
932 932
 					$this->lastSearchedPhysicalPage['logicalPage'] = $logicalPage;
933 933
 					$this->lastSearchedPhysicalPage['physicalPage'] = $physicalPage;
@@ -1351,7 +1351,7 @@  discard block
 block discarded – undo
1351 1351
 
1352 1352
 			if (TYPO3_DLOG) {
1353 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'),
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 1355
 									       self::$extKey, SYSLOG_SEVERITY_ERROR);
1356 1356
 
1357 1357
 			}
@@ -1522,7 +1522,7 @@  discard block
 block discarded – undo
1522 1522
 
1523 1523
 			if ($parentLocation != $this->location) {
1524 1524
 
1525
-				$parentDoc =& tx_dlf_document::getInstance($parentLocation, $pid);
1525
+				$parentDoc = & tx_dlf_document::getInstance($parentLocation, $pid);
1526 1526
 
1527 1527
 				if ($parentDoc->ready) {
1528 1528
 
@@ -2436,7 +2436,7 @@  discard block
 block discarded – undo
2436 2436
 					$hookObjects = tx_dlf_helper::getHookObjects('common/class.tx_dlf_document.php');
2437 2437
 
2438 2438
 					// Apply hooks.
2439
-					foreach($hookObjects as $hookObj) {
2439
+					foreach ($hookObjects as $hookObj) {
2440 2440
 
2441 2441
 						if (method_exists($hookObj, 'construct_postProcessRecordId')) {
2442 2442
 
Please login to merge, or discard this patch.