File "DisallowShortOpenTagUnitTest.3.inc"

Full Path: /home/warrior1/public_html/themes/storefront/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.3.inc
File size: 307 bytes
MIME-type: text/plain
Charset: utf-8

// Test warning for when short_open_tag is off.

Some content <? echo $var; ?> Some more content

// Test multi-line.
Some content <?
echo $var;
?> Some more content

// Make sure skipping works.
Some content <?
echo '<?';
?> Some more content

// Only recognize closing tag after opener.
Some?> content <?