Completed
Branch master (d17104)
by Christian
21:20
created
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.
form/Classes/Domain/Configuration/Exception/PrototypeNotFoundException.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\Configuration\Exception;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/form/Classes/Domain/Factory/AbstractFormFactory.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\Factory;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/form/Classes/Controller/FormManagerController.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\Controller;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/form/Classes/Controller/FormEditorController.php 1 patch
Spacing   +2 added lines, -2 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\Controller;
4 4
 
5 5
 /*
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
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']);
Please login to merge, or discard this patch.