File "SemicolonSpacingStandard.xml"

Full Path: /home/warrior1/public_html/themes/storefront/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/SemicolonSpacingStandard.xml
File size: 446 bytes
MIME-type: text/plain
Charset: utf-8

<documentation title="Semicolon Spacing">
    <standard>
    <![CDATA[
    Semicolons should not have spaces before them.
    ]]>
    </standard>
    <code_comparison>
        <code title="Valid: No space before the semicolon.">
        <![CDATA[
echo "hi"<em></em>;
]]>
        </code>
        <code title="Invalid: Space before the semicolon.">
        <![CDATA[
echo "hi"<em> </em>;
]]>
        </code>
    </code_comparison>
</documentation>