@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace TYPO3\CMS\Form\Domain\Model\Renderable; |
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\Domain\Model\FormElements; |
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\Domain\Runtime\Exception; |
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\Domain\Runtime; |
4 | 4 | |
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\Runtime; |
4 | 4 | |
5 | 5 | /* |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | $requestArguments = $this->request->getArguments(); |
416 | 416 | |
417 | 417 | $propertyPathsForWhichPropertyMappingShouldHappen = []; |
418 | - $registerPropertyPaths = function ($propertyPath) use (&$propertyPathsForWhichPropertyMappingShouldHappen) { |
|
418 | + $registerPropertyPaths = function($propertyPath) use (&$propertyPathsForWhichPropertyMappingShouldHappen) { |
|
419 | 419 | $propertyPathParts = explode('.', $propertyPath); |
420 | 420 | $accumulatedPropertyPathParts = []; |
421 | 421 | foreach ($propertyPathParts as $propertyPathPart) { |
@@ -463,7 +463,7 @@ discard block |
||
463 | 463 | } |
464 | 464 | |
465 | 465 | // The more parts the path has, the more early it is processed |
466 | - usort($propertyPathsForWhichPropertyMappingShouldHappen, function ($a, $b) { |
|
466 | + usort($propertyPathsForWhichPropertyMappingShouldHappen, function($a, $b) { |
|
467 | 467 | return substr_count($b, '.') - substr_count($a, '.'); |
468 | 468 | }); |
469 | 469 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace TYPO3\CMS\Form\Domain\Configuration\Exception; |
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\Domain\Factory; |
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\Controller; |
4 | 4 | |
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\Controller; |
4 | 4 | |
5 | 5 | /* |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | continue; |
251 | 251 | } |
252 | 252 | |
253 | - usort($formElementsByGroup[$groupName], function ($a, $b) { |
|
253 | + usort($formElementsByGroup[$groupName], function($a, $b) { |
|
254 | 254 | return $a['sorting'] - $b['sorting']; |
255 | 255 | }); |
256 | 256 | unset($formElementsByGroup[$groupName]['sorting']); |