diff --git a/src/AST/Handler.php b/src/AST/Handler.php index 034e1dd..c64da20 100644 --- a/src/AST/Handler.php +++ b/src/AST/Handler.php @@ -27,6 +27,8 @@ final class Handler implements StateRenderable */ public function renderable(State $State) { - return ($this->closure)($State); + $closure = $this->closure; + + return $closure($State); } }