File "DeprecatedFunctionsStandard.xml"

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

<documentation title="Deprecated Functions">
    <standard>
    <![CDATA[
    Deprecated functions should not be used.
    ]]>
    </standard>
    <code_comparison>
        <code title="Valid: A non-deprecated function is used.">
        <![CDATA[
$foo = <em>explode</em>('a', $bar);
        ]]>
        </code>
        <code title="Invalid: A deprecated function is used.">
        <![CDATA[
$foo = <em>split</em>('a', $bar);
        ]]>
        </code>
    </code_comparison>
</documentation>