File "UnusedFunctionParameterStandard.xml"

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

<documentation title="Unused function parameters">
    <standard>
    <![CDATA[
    All parameters in a functions signature should be used within the function.
    ]]>
    </standard>
    <code_comparison>
        <code title="Valid: All the parameters are used.">
        <![CDATA[
function addThree($a, $b, $c)
{
    return <em>$a + $b + $c</em>;
}
        ]]>
        </code>
        <code title="Invalid: One of the parameters is not being used.">
        <![CDATA[
function addThree($a, $b, $c)
{
    return <em>$a + $b</em>;
}
        ]]>
        </code>
    </code_comparison>
</documentation>