phphaml
phphaml copied to clipboard
Code insertion following = (equals)
Code insertation following a '=' does not need a space.
-for ($i = 0; $i < 5; $i++)
=$i
should work. in PhpHaml however the resulting template is this:
-for ($i = 0; $i < 5; $i++)
<div><?php echo ; ?>
</div>