File "ArbitraryParenthesesSpacingStandard.xml"

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

<documentation title="Arbitrary Parentheses Spacing">
    <standard>
    <![CDATA[
    Arbitrary sets of parentheses should have no spaces inside.
    ]]>
    </standard>
    <code_comparison>
        <code title="Valid: no spaces on the inside of a set of arbitrary parentheses.">
        <![CDATA[
$a = (null !== $extra);
        ]]>
        </code>
        <code title="Invalid: spaces on the inside of a set of arbitrary parentheses.">
        <![CDATA[
$a = ( null !== $extra );
        ]]>
        </code>
        <code title="Invalid: new lines on the inside of a set of arbitrary parentheses.">
        <![CDATA[
$a = (
    null !== $extra
);
        ]]>
        </code>
    </code_comparison>
</documentation>