1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2025-01-06 04:58:28 +01:00
PHP-Parser/test/code/prettyPrinter/expr/call.test

13 lines
112 B
Plaintext
Raw Normal View History

Calls
-----
<?php
f($a);
f(&$a);
f(...$a);
f($a, &$b, ...$c);
-----
f($a);
f(&$a);
f(...$a);
f($a, &$b, ...$c);