Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LogicalOperatorSpacingUnitTest.js


if (foo || bar) {}
if (foo||bar && baz) {}
if (foo|| bar&&baz) {}
if (foo  ||   bar   && baz) {}

// Spacing after || below is ignored as it is EOL whitespace.
if (foo ||    
    bar
    && baz
) {
}

if (foo||
    bar
    &&baz
) {
}