Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 336 Bytes

control_structure_braces.rst

File metadata and controls

19 lines (14 loc) · 336 Bytes

Rule control_structure_braces

The body of each control structure MUST be enclosed within braces.

Examples

Example #1

--- Original
+++ New
 <?php
-if (foo()) echo 'Hello!';
+if (foo()) { echo 'Hello!'; }