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