1<documentation title="Inline Control Structures">
2    <standard>
3    <![CDATA[
4    Control Structures should use braces.
5    ]]>
6    </standard>
7    <code_comparison>
8        <code title="Valid: Braces are used around the control structure.">
9        <![CDATA[
10if ($test) <em>{</em>
11    $var = 1;
12<em>}</em>
13        ]]>
14        </code>
15        <code title="Invalid: No braces are used for the control structure..">
16        <![CDATA[
17if ($test)
18    $var = 1;
19        ]]>
20        </code>
21    </code_comparison>
22</documentation>
23