Skip to content

Commit 1e80ba5

Browse files
committed
Fix variable name
1 parent 1ccba8a commit 1e80ba5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JsPhpize/Compiler/Compiler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function __construct(JsPhpize $engine)
2121
protected function outputNode($node, $indent)
2222
{
2323
if ($node instanceof Block) {
24-
return $indent . $block->getHead() . '{' . "\n" .
24+
return $indent . $node->getHead() . '{' . "\n" .
2525
$this->compile($node, ' ' . $indent) .
2626
'}';
2727
}

0 commit comments

Comments
 (0)