| Current Path : /var/www/html/edd.sumar.com.py/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/ |
| Current File : /var/www/html/edd.sumar.com.py/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/block.test |
Block statements
-----
<?php
echo "a";
{
}
{
echo "b";
}
if ($c) {
echo "c";
{
echo "d";
}
}
-----
echo "a";
{
}
{
echo "b";
}
if ($c) {
echo "c";
{
echo "d";
}
}