| Current Path : /var/www/html/edd.sumar.com.py/vendor/nikic/php-parser/test/code/prettyPrinter/expr/ |
| Current File : /var/www/html/edd.sumar.com.py/vendor/nikic/php-parser/test/code/prettyPrinter/expr/match.test |
Match
-----
<?php
echo match (1) {
0, 1 => 'Foo',
// Comment
2 => 'Bar',
default => 'Foo',
};
-----
echo match (1) {
0, 1 => 'Foo',
// Comment
2 => 'Bar',
default => 'Foo',
};