File "LowerCaseKeywordStandard.xml"

Full Path: /home/warrior1/public_html/wp-content/themes/storefront/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/LowerCaseKeywordStandard.xml
File size: 468 bytes
MIME-type: text/plain
Charset: utf-8

<documentation title="Lowercase Keywords">
    <standard>
    <![CDATA[
    All PHP keywords should be lowercase.
    ]]>
    </standard>
    <code_comparison>
        <code title="Valid: Lowercase array keyword used.">
        <![CDATA[
$foo = <em>array</em>();
        ]]>
        </code>
        <code title="Invalid: Non-lowercase array keyword used.">
        <![CDATA[
$foo = <em>Array</em>();
        ]]>
        </code>
    </code_comparison>
</documentation>