Coder adds brackets without spaces for TPL files.

Created on 23 December 2015, over 9 years ago
Updated 11 January 2025, 3 months ago

The following code:

<?php
/**
 * @file
 */
if(!empty($arr_topics[0])) print '<li><a href="#">' . $arr_topics[0] . '</a></li>'; ?>
<?php if(!empty($arr_topics[1])) print '<li><a href="#">' . $arr_topics[1] . '</a></li>'; ?>

is fixed into:

<?php
/**
 * @file
 */
if(!empty($arr_topics[0])) {print '<li><a href="#">' . $arr_topics[0] . '</a></li>';} ?>
<?php if(!empty($arr_topics[1])) {print '<li><a href="#">' . $arr_topics[1] . '</a></li>';} ?>

Test command: phpcbf --standard=Drupal foo.tpl.php

It works when the filename is foo.module

🐛 Bug report
Status

Closed: outdated

Version

2.0

Component

Coder Sniffer

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