Closed
Description
Curly braces should not be used in PHTML files.
Bad:
<?php
if ($block->getFooList()) {
foreach ($block->getFooList() as $foo) {
?>
<!-- Template stuff -->
<?php
}
}
?>
Better (Proposal 1):
<?php
if ($block->getFooList()):
foreach ($block->getFooList() as $foo):
?>
<!-- Template stuff -->
<?php
endforeach;
endif;
?>
Better (Proposal 2):
<?php if ($block->getFooList()) ?>
<?php foreach ($block->getFooList() as $foo): ?>
<!-- Template stuff -->
<?php endforeach; ?>
<?php endif; ?>
(Source: https://twitter.com/jissereitsma/status/990301162090975232)
Metadata
Metadata
Assignees
Labels
No labels