File "InterfaceNameSuffixStandard.xml"

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

<documentation title="Interface name suffix">
    <standard>
    <![CDATA[
    Interface names must be suffixed with "Interface", e.g. BarInterface.
    ]]>
    </standard>
    <code_comparison>
        <code title="Valid: ">
        <![CDATA[
interface <em>BarInterface</em>
{
}
        ]]>
        </code>
        <code title="Invalid: ">
        <![CDATA[
interface <em>Bar</em>
{
}
        ]]>
        </code>
    </code_comparison>
</documentation>