Skip to content

Commit e91ef41

Browse files
committed
Cleanup
1 parent 2468f36 commit e91ef41

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/JsPhpize/Compiler/Compiler.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,11 +223,12 @@ protected function visitInstruction(Instruction $group, $indent)
223223
return implode('', array_map(function ($instruction) use ($visitNode, $indent) {
224224
$value = call_user_func($visitNode, $instruction, $indent);
225225

226-
return $indent . (
227-
$instruction instanceof Block && $instruction->handleInstructions()
226+
return $indent .
227+
($instruction instanceof Block && $instruction->handleInstructions()
228228
? $value
229229
: $value . ';'
230-
). "\n";
230+
) .
231+
"\n";
231232
}, $group->instructions));
232233
}
233234

0 commit comments

Comments
 (0)