@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | $arguments['name'] = $name; |
| 76 | 76 | |
| 77 | 77 | $reflection = new ReflectionMethod(Environment::class, $type); |
| 78 | - foreach($reflection->getParameters() as $parameter) { |
|
| 78 | + foreach ($reflection->getParameters() as $parameter) { |
|
| 79 | 79 | $name = $parameter->getName(); |
| 80 | 80 | if (!isset($arguments[$name])) { |
| 81 | 81 | if (!$parameter->isOptional()) { |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | $data = (array)($data['parameters']['env'] ?? []); |
| 121 | 121 | array_walk_recursive( |
| 122 | 122 | $data, |
| 123 | - static function (mixed &$val): void { |
|
| 123 | + static function(mixed &$val): void { |
|
| 124 | 124 | if ($val instanceof Statement && $entity = $val->getEntity()) { |
| 125 | 125 | $arguments = [ |
| 126 | 126 | 'hidden' => true, |