@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | namespace TYPO3\CMS\Backend\Form\FieldControl; |
4 | 4 | |
5 | 5 | /* |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | $flexFormPath = str_replace('][', '/', substr($itemName, strlen($prefixOfFormElName) + 1, -1)); |
80 | 80 | } |
81 | 81 | |
82 | - $urlParameters = [ |
|
82 | + $urlParameters = [ |
|
83 | 83 | 'P' => [ |
84 | 84 | 'params' => [ |
85 | 85 | 'table' => $table, |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | namespace TYPO3\CMS\Backend\Form\FieldControl; |
4 | 4 | |
5 | 5 | /* |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | $flexFormPath = str_replace('][', '/', substr($itemName, strlen($prefixOfFormElName) + 1, -1)); |
54 | 54 | } |
55 | 55 | |
56 | - $urlParameters = [ |
|
56 | + $urlParameters = [ |
|
57 | 57 | 'P' => [ |
58 | 58 | 'params' => [ |
59 | 59 | 'xmlOutput' => $xmlOutput, |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | namespace TYPO3\CMS\Backend\Form\NodeExpansion; |
4 | 4 | |
5 | 5 | /* |
@@ -122,9 +122,9 @@ discard block |
||
122 | 122 | |
123 | 123 | $html = []; |
124 | 124 | $html[] = '<a ' . GeneralUtility::implodeAttributes($linkAttributes, true) . '>'; |
125 | - $html[] = '<span alt="' . htmlspecialchars($title) . '" title="' . htmlspecialchars($title) . '">'; |
|
126 | - $html[] = $iconFactory->getIcon($icon, Icon::SIZE_SMALL)->render(); |
|
127 | - $html[] = '</span>'; |
|
125 | + $html[] = '<span alt="' . htmlspecialchars($title) . '" title="' . htmlspecialchars($title) . '">'; |
|
126 | + $html[] = $iconFactory->getIcon($icon, Icon::SIZE_SMALL)->render(); |
|
127 | + $html[] = '</span>'; |
|
128 | 128 | $html[] = '</a>'; |
129 | 129 | |
130 | 130 | $finalControlResult = $this->initializeResultArray(); |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | namespace TYPO3\CMS\Extbase\Mvc\Web; |
4 | 4 | |
5 | 5 | /* |
@@ -271,7 +271,7 @@ |
||
271 | 271 | $fieldPaths[] = [$firstLevelFieldName]; |
272 | 272 | } else { |
273 | 273 | $newFieldPaths = $this->calculateFieldPaths($fieldInformation['error'], $firstLevelFieldName); |
274 | - array_walk($newFieldPaths, function (&$value, $key) { |
|
274 | + array_walk($newFieldPaths, function(&$value, $key) { |
|
275 | 275 | $value = explode('/', $value); |
276 | 276 | }); |
277 | 277 | $fieldPaths = array_merge($fieldPaths, $newFieldPaths); |
@@ -148,7 +148,7 @@ |
||
148 | 148 | */ |
149 | 149 | private function init() |
150 | 150 | { |
151 | - $requestSetup = $this->processPostData((array) $_REQUEST['data']); |
|
151 | + $requestSetup = $this->processPostData((array)$_REQUEST['data']); |
|
152 | 152 | $extConf = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['saltedpasswords'], ['allowed_classes' => false]); |
153 | 153 | $this->extConf['BE'] = array_merge((array)$extConf['BE.'], (array)$requestSetup['BE.']); |
154 | 154 | $this->extConf['FE'] = array_merge((array)$extConf['FE.'], (array)$requestSetup['FE.']); |
@@ -139,7 +139,7 @@ |
||
139 | 139 | $this->charRangeMap[$cRMkey] = []; |
140 | 140 | $this->charRangeMap[$cRMkey]['charMapConfig'] = $cRMcfg['charMapConfig.']; |
141 | 141 | $this->charRangeMap[$cRMkey]['cfgKey'] = substr($cRMcfgkey, 0, -1); |
142 | - $this->charRangeMap[$cRMkey]['multiplicator'] = (double) $cRMcfg['fontSizeMultiplicator']; |
|
142 | + $this->charRangeMap[$cRMkey]['multiplicator'] = (double)$cRMcfg['fontSizeMultiplicator']; |
|
143 | 143 | $this->charRangeMap[$cRMkey]['pixelSpace'] = (int)$cRMcfg['pixelSpaceFontSizeRef']; |
144 | 144 | } |
145 | 145 | } |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | namespace TYPO3\CMS\Form\Controller; |
4 | 4 | |
5 | 5 | /* |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | namespace TYPO3\CMS\Form\Service; |
4 | 4 | |
5 | 5 | /* |