control_structure_braces.rst 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. =================================
  2. Rule ``control_structure_braces``
  3. =================================
  4. The body of each control structure MUST be enclosed within braces.
  5. Examples
  6. --------
  7. Example #1
  8. ~~~~~~~~~~
  9. .. code-block:: diff
  10. --- Original
  11. +++ New
  12. <?php
  13. -if (foo()) echo 'Hello!';
  14. +if (foo()) { echo 'Hello!'; }
  15. Rule sets
  16. ---------
  17. The rule is part of the following rule sets:
  18. - `@PER <./../../ruleSets/PER.rst>`_
  19. - `@PER-CS <./../../ruleSets/PER-CS.rst>`_
  20. - `@PER-CS1.0 <./../../ruleSets/PER-CS1.0.rst>`_
  21. - `@PER-CS2.0 <./../../ruleSets/PER-CS2.0.rst>`_
  22. - `@PSR2 <./../../ruleSets/PSR2.rst>`_
  23. - `@PSR12 <./../../ruleSets/PSR12.rst>`_
  24. - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
  25. - `@Symfony <./../../ruleSets/Symfony.rst>`_
  26. References
  27. ----------
  28. - Fixer class: `PhpCsFixer\\Fixer\\ControlStructure\\ControlStructureBracesFixer <./../../../src/Fixer/ControlStructure/ControlStructureBracesFixer.php>`_
  29. - Test class: `PhpCsFixer\\Tests\\Fixer\\ControlStructure\\ControlStructureBracesFixerTest <./../../../tests/Fixer/ControlStructure/ControlStructureBracesFixerTest.php>`_
  30. The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.