We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -572,7 +572,7 @@ discard block |
||
| 572 | 572 | |
| 573 | 573 | $details['id'] = $attributes['ID']; |
| 574 | 574 | |
| 575 | - $details['dmdId'] = (isset($attributes['DMDID']) ? $attributes['DMDID'] : ''); |
|
| 575 | + $details['dmdId'] = (isset($attributes['DMDID']) ? $attributes['DMDID'] : ''); |
|
| 576 | 576 | |
| 577 | 577 | $details['label'] = (isset($attributes['LABEL']) ? $attributes['LABEL'] : ''); |
| 578 | 578 | |
@@ -921,7 +921,7 @@ discard block |
||
| 921 | 921 | */ |
| 922 | 922 | public function getPhysicalPage($logicalPage) { |
| 923 | 923 | |
| 924 | - if(!empty( $this->lastSearchedPhysicalPage['logicalPage']) && $this->lastSearchedPhysicalPage['logicalPage'] == $logicalPage) { |
|
| 924 | + if (!empty($this->lastSearchedPhysicalPage['logicalPage']) && $this->lastSearchedPhysicalPage['logicalPage'] == $logicalPage) { |
|
| 925 | 925 | |
| 926 | 926 | return $this->lastSearchedPhysicalPage['physicalPage']; |
| 927 | 927 | |
@@ -929,9 +929,9 @@ discard block |
||
| 929 | 929 | |
| 930 | 930 | $physicalPage = 0; |
| 931 | 931 | |
| 932 | - foreach($this->physicalStructureInfo as $page) { |
|
| 932 | + foreach ($this->physicalStructureInfo as $page) { |
|
| 933 | 933 | |
| 934 | - if(strpos($page['orderlabel'], $logicalPage) !== FALSE) { |
|
| 934 | + if (strpos($page['orderlabel'], $logicalPage) !== FALSE) { |
|
| 935 | 935 | |
| 936 | 936 | $this->lastSearchedPhysicalPage['logicalPage'] = $logicalPage; |
| 937 | 937 | $this->lastSearchedPhysicalPage['physicalPage'] = $physicalPage; |
@@ -1355,7 +1355,7 @@ discard block |
||
| 1355 | 1355 | |
| 1356 | 1356 | if (TYPO3_DLOG) { |
| 1357 | 1357 | |
| 1358 | - \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'), |
|
| 1358 | + \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'), |
|
| 1359 | 1359 | self::$extKey, SYSLOG_SEVERITY_ERROR); |
| 1360 | 1360 | |
| 1361 | 1361 | } |
@@ -1526,7 +1526,7 @@ discard block |
||
| 1526 | 1526 | |
| 1527 | 1527 | if ($parentLocation != $this->location) { |
| 1528 | 1528 | |
| 1529 | - $parentDoc =& tx_dlf_document::getInstance($parentLocation, $pid); |
|
| 1529 | + $parentDoc = & tx_dlf_document::getInstance($parentLocation, $pid); |
|
| 1530 | 1530 | |
| 1531 | 1531 | if ($parentDoc->ready) { |
| 1532 | 1532 | |
@@ -2440,7 +2440,7 @@ discard block |
||
| 2440 | 2440 | $hookObjects = tx_dlf_helper::getHookObjects('common/class.tx_dlf_document.php'); |
| 2441 | 2441 | |
| 2442 | 2442 | // Apply hooks. |
| 2443 | - foreach($hookObjects as $hookObj) { |
|
| 2443 | + foreach ($hookObjects as $hookObj) { |
|
| 2444 | 2444 | |
| 2445 | 2445 | if (method_exists($hookObj, 'construct_postProcessRecordId')) { |
| 2446 | 2446 | |