File "ClassDeclarationStandard.xml"

Full Path: /home/warrior1/public_html/wp-content/themes/storefront/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Classes/ClassDeclarationStandard.xml
File size: 521 bytes
MIME-type: text/plain
Charset: utf-8

<documentation title="Class Declarations">
    <standard>
    <![CDATA[
    The opening brace of a class must be on the line after the definition by itself.
    ]]>
    </standard>
    <code_comparison>
        <code title="Valid: Opening brace on the correct line.">
        <![CDATA[
class Foo
<em>{</em>
}
        ]]>
        </code>
        <code title="Invalid: Opening brace on same line as declaration.">
        <![CDATA[
class Foo <em>{</em>
}
        ]]>
        </code>
    </code_comparison>
</documentation>