The body of each control structure MUST be enclosed within braces.
--- Original
+++ New
<?php
-if (foo()) echo 'Hello!';
+if (foo()) { echo 'Hello!'; }The rule is part of the following rule sets:
- Fixer class: PhpCsFixer\Fixer\ControlStructure\ControlStructureBracesFixer
- Test class: PhpCsFixer\Tests\Fixer\ControlStructure\ControlStructureBracesFixerTest
The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.