@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Psi\Component\ContentType\Standard\View; |
| 6 | 6 | |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | foreach ($metadata->getPropertyMetadata() as $propertyMetadata) { |
| 41 | - $map[$propertyMetadata->getName()] = function () use ($propertyMetadata, $factory, $data) { |
|
| 41 | + $map[$propertyMetadata->getName()] = function() use ($propertyMetadata, $factory, $data) { |
|
| 42 | 42 | $field = $this->fieldLoader->load( |
| 43 | 43 | $propertyMetadata->getType(), |
| 44 | 44 | $propertyMetadata->getOptions() |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | )); |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | - $output = function () use ($view) { |
|
| 29 | + $output = function() use ($view) { |
|
| 30 | 30 | ob_start(); |
| 31 | 31 | $renderer = $this; |
| 32 | 32 | require_once($template); |