@@ -1,5 +1,5 @@ |
||
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 | /* |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace TYPO3\CMS\Form\Mvc; |
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\Renderer; |
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\Exception; |
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\Finishers; |
4 | 4 | |
5 | 5 | /* |
@@ -273,7 +273,7 @@ discard block |
||
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 |
||
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 |
@@ -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 | /* |
@@ -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\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; |
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\Exception; |
4 | 4 | |
5 | 5 | /* |