Completed
Branch master (b5e024)
by Christian
18:16
created
typo3/sysext/form/Classes/Domain/Finishers/Exception/FinisherException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\Form\Domain\Finishers\Exception;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/form/Classes/Domain/Exception.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\Form\Domain;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
form/Classes/Domain/Model/Exception/DuplicateFormElementException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\Form\Domain\Model\Exception;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/form/Classes/Domain/Model/Exception.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\Form\Domain\Model;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
sysext/form/Classes/Domain/Model/Renderable/RootRenderableInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
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
 /*
Please login to merge, or discard this patch.
typo3/sysext/form/Classes/Domain/Model/FormElements/GridRow.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
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
 /*
Please login to merge, or discard this patch.
sysext/form/Classes/Domain/Runtime/Exception/PropertyMappingException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
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
 /*
Please login to merge, or discard this patch.
typo3/sysext/form/Classes/Domain/Runtime/FormState.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
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
 /*
Please login to merge, or discard this patch.
typo3/sysext/form/Classes/Domain/Runtime/FormRuntime.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.