File "LowercaseClassKeywordsStandard.xml"

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

<documentation title="Lowercase Class Keywords">
    <standard>
    <![CDATA[
    The php keywords class, interface, trait, extends, implements, abstract, final, var, and const should be lowercase.
    ]]>
    </standard>
    <code_comparison>
        <code title="Valid: Lowercase class keywords.">
        <![CDATA[
<em>final</em> <em>class</em> Foo <em>extends</em> Bar
{
}
]]>
        </code>
        <code title="Invalid: Initial capitalization of class keywords.">
        <![CDATA[
<em>Final</em> <em>Class</em> Foo <em>Extends</em> Bar
{
}
]]>
        </code>
    </code_comparison>
</documentation>