1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-27 04:14:44 +01:00
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
}