We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ccba8a commit 1e80ba5Copy full SHA for 1e80ba5
src/JsPhpize/Compiler/Compiler.php
@@ -21,7 +21,7 @@ public function __construct(JsPhpize $engine)
21
protected function outputNode($node, $indent)
22
{
23
if ($node instanceof Block) {
24
- return $indent . $block->getHead() . '{' . "\n" .
+ return $indent . $node->getHead() . '{' . "\n" .
25
$this->compile($node, ' ' . $indent) .
26
'}';
27
}
0 commit comments