Spaces between curly brackets are removed in TPL file.

Created on 10 November 2015, over 9 years ago
Updated 11 January 2025, 3 months ago

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)?

🐛 Bug report
Status

Closed: outdated

Version

2.0

Component

Coder Review

Created by

🇬🇧United Kingdom kenorb

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇦🇹Austria klausi 🇦🇹 Vienna

    Drupal 7 is not supported anymore, and Drupal 8+ versions do not use TPL files anymore. Closing this as outdated.

Production build 0.71.5 2024