Current File : //opt/RZphp74/includes/doc/PhpDocumentor/Documentation/tests/bug-eofquotes.php
<?php
/**
*
* @package tests
*/
/** tests */
function test_eofquotes ()
{
}
echo <<< EOF
This shouldn't be parsed
function bob ()
{
}
EOF;
$string = <<< EOF
This shouldn't be parsed
function bob ()
{
}
EOF;
?>