Completed
Branch master (d17104)
by Christian
21:20
created
typo3/sysext/form/Classes/Mvc/Configuration/InheritancesResolverService.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\Mvc\Configuration;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/form/Classes/Mvc/ProcessingRule.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\Mvc;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/form/Classes/Domain/Renderer/FluidFormRenderer.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\Renderer;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/form/Classes/Domain/Exception/IdentifierNotValidException.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\Exception;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/form/Classes/Domain/Finishers/AbstractFinisher.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\Finishers;
4 4
 
5 5
 /*
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
         // resolve (recursively) all array items
274 274
         if (is_array($needle)) {
275 275
             return array_map(
276
-                function ($item) use ($formRuntime) {
276
+                function($item) use ($formRuntime) {
277 277
                     return $this->substituteRuntimeReferences($item, $formRuntime);
278 278
                 },
279 279
                 $needle
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
         // * mixed cases of the above
298 298
         return preg_replace_callback(
299 299
             '/{([^}]+)}/',
300
-            function ($matches) use ($formRuntime) {
300
+            function($matches) use ($formRuntime) {
301 301
                 $value = $this->resolveRuntimeReference(
302 302
                     $matches[1],
303 303
                     $formRuntime
Please login to merge, or discard this patch.
typo3/sysext/form/Classes/Domain/Finishers/RedirectFinisher.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;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
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.