phphaml icon indicating copy to clipboard operation
phphaml copied to clipboard

Code insertion following = (equals)

Open derDoc opened this issue 13 years ago • 0 comments

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>

derDoc avatar Feb 08 '13 13:02 derDoc