File "ControlSignatureStandard.xml"

Full Path: /home/warrior1/public_html/themes/storefront/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/ControlStructures/ControlSignatureStandard.xml
File size: 974 bytes
MIME-type: text/plain
Charset: utf-8

<documentation title="Control Structure Signatures">
    <standard>
    <![CDATA[
    Control structures should use one space around the parentheses in conditions.  The opening brace should be preceded by one space and should be at the end of the line.
    ]]>
    </standard>
    <code_comparison>
        <code title="Valid: Correct spacing around the condition.">
        <![CDATA[
if<em> </em>($foo)<em> </em>{
}
        ]]>
        </code>
        <code title="Invalid: Incorrect spacing around the condition.">
        <![CDATA[
if<em></em>($foo)<em></em>{
}
        ]]>
        </code>
    </code_comparison>
    <code_comparison>
        <code title="Valid: Correct placement of the opening brace.">
        <![CDATA[
if ($foo) <em>{</em>
}
        ]]>
        </code>
        <code title="Invalid: Incorrect placement of the opening brace on a new line.">
        <![CDATA[
if ($foo)
<em>{</em>
}
        ]]>
        </code>
    </code_comparison>
</documentation>