@@ -711,7 +711,7 @@ |
||
711 | 711 | { |
712 | 712 | if ($this->getBackendUser()->jsConfirmation(JsConfirmation::COPY_MOVE_PASTE)) { |
713 | 713 | $labelKey = 'LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:mess.' . ($this->currentMode() === 'copy' ? 'copy' : 'move') . ($this->current === 'normal' ? '' : 'cb') . '_' . $type; |
714 | - $msg = $this->getLanguageService()->sL($labelKey . ($columnLabel ? '_colPos': '')); |
|
714 | + $msg = $this->getLanguageService()->sL($labelKey . ($columnLabel ? '_colPos' : '')); |
|
715 | 715 | if ($table === '_FILE') { |
716 | 716 | $thisRecTitle = basename($rec); |
717 | 717 | if ($this->current === 'normal') { |
@@ -475,7 +475,7 @@ |
||
475 | 475 | if ($sortby === 'uid') { |
476 | 476 | usort( |
477 | 477 | $this->itemArray, |
478 | - function ($a, $b) { |
|
478 | + function($a, $b) { |
|
479 | 479 | return $a['id'] < $b['id'] ? -1 : 1; |
480 | 480 | } |
481 | 481 | ); |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | namespace TYPO3\CMS\Form\ViewHelpers; |
4 | 4 | |
5 | 5 | /* |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | } |
68 | 68 | |
69 | 69 | /** @var FormRuntime $formRuntime */ |
70 | - $formRuntime = $renderingContext |
|
70 | + $formRuntime = $renderingContext |
|
71 | 71 | ->getViewHelperVariableContainer() |
72 | 72 | ->get(RenderRenderableViewHelper::class, 'formRuntime'); |
73 | 73 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | namespace TYPO3\CMS\Form\ViewHelpers; |
4 | 4 | |
5 | 5 | /* |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | $elements = [$renderable]; |
76 | 76 | } |
77 | 77 | |
78 | - $formRuntime = $renderingContext |
|
78 | + $formRuntime = $renderingContext |
|
79 | 79 | ->getViewHelperVariableContainer() |
80 | 80 | ->get(RenderRenderableViewHelper::class, 'formRuntime'); |
81 | 81 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | namespace TYPO3\CMS\Form\ViewHelpers\Form; |
4 | 4 | |
5 | 5 | /* |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | protected function getSelectedDate() |
95 | 95 | { |
96 | 96 | /** @var FormRuntime $formRuntime */ |
97 | - $formRuntime = $this->renderingContext |
|
97 | + $formRuntime = $this->renderingContext |
|
98 | 98 | ->getViewHelperVariableContainer() |
99 | 99 | ->get(RenderRenderableViewHelper::class, 'formRuntime'); |
100 | 100 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | namespace TYPO3\CMS\Form\ViewHelpers\Form; |
4 | 4 | |
5 | 5 | /* |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | protected function getSelectedDate() |
95 | 95 | { |
96 | 96 | /** @var FormRuntime $formRuntime */ |
97 | - $formRuntime = $this->renderingContext |
|
97 | + $formRuntime = $this->renderingContext |
|
98 | 98 | ->getViewHelperVariableContainer() |
99 | 99 | ->get(RenderRenderableViewHelper::class, 'formRuntime'); |
100 | 100 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace TYPO3\CMS\Install\UpgradeAnalysis; |
5 | 5 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | namespace TYPO3\CMS\Form\Domain\Finishers; |
4 | 4 | |
5 | 5 | /* |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | // If the value is not a string nothing will be replaced. |
180 | 180 | // There is a special option value '{__currentTimestamp}'. |
181 | 181 | // This will be replaced with the current timestamp. |
182 | - $optionValue = preg_replace_callback('/{([^}]+)}/', function ($match) use ($formRuntime) { |
|
182 | + $optionValue = preg_replace_callback('/{([^}]+)}/', function($match) use ($formRuntime) { |
|
183 | 183 | if ($match[1] === '__currentTimestamp') { |
184 | 184 | $value = time(); |
185 | 185 | } else { |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | namespace TYPO3\CMS\Form\Domain\Finishers; |
4 | 4 | |
5 | 5 | /* |