@@ -91,12 +91,12 @@ |
||
| 91 | 91 | $argumentName = $this->resolveContentArgumentName(); |
| 92 | 92 | $arguments = $this->arguments; |
| 93 | 93 | if (!empty($argumentName) && isset($arguments[$argumentName])) { |
| 94 | - $renderChildrenClosure = function () use ($arguments, $argumentName) { |
|
| 94 | + $renderChildrenClosure = function() use ($arguments, $argumentName) { |
|
| 95 | 95 | return $arguments[$argumentName]; |
| 96 | 96 | }; |
| 97 | 97 | } else { |
| 98 | 98 | $self = clone $this; |
| 99 | - $renderChildrenClosure = function () use ($self) { |
|
| 99 | + $renderChildrenClosure = function() use ($self) { |
|
| 100 | 100 | return $self->renderChildren(); |
| 101 | 101 | }; |
| 102 | 102 | } |