php-parser/test/code/prettyPrinter/nestedInlineHTML.test
2017-09-03 19:02:07 +02:00

16 lines
143 B
Plaintext

InlineHTML node nested inside other code
-----
<?php
function test() {
?>
Test
<?php
}
-----
function test()
{
?>
Test
<?php
}