@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | public function getCallback(): callable |
| 73 | 73 | { |
| 74 | 74 | if (!isset($this->callback)) { |
| 75 | - $this->callback = function ( |
|
| 75 | + $this->callback = function( |
|
| 76 | 76 | NodeValueListInterface $input, |
| 77 | 77 | ValueListFetcherInterface $valueListFetcher, |
| 78 | 78 | EvaluatorInterface $evaluator, |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | public function onFinish(): void |
| 121 | 121 | { |
| 122 | 122 | $stmts = array_map( |
| 123 | - function (PhpAstNode $stmt): PhpAstNode { |
|
| 123 | + function(PhpAstNode $stmt): PhpAstNode { |
|
| 124 | 124 | return $stmt instanceof Expr ? new Expression($stmt) : $stmt; |
| 125 | 125 | }, |
| 126 | 126 | $this->stmts |