I've the following foo.tpl.php file:

<?php
/**
 * @file
 */
?>
<li class="<?php if ($foo) { print 'active'; } ?>"

and after running phpcbf --standard=Drupal,DrupalPractice foo.tpl.php it's converted into:

<?php
/**
 * @file
 */
?>
<li class="<?php if ($foo) {print 'active';} ?>"

The interesting part are removed spaces around PHP print function. Shouldn't be this opposite (as it's currently)?

Comments

kenorb created an issue.