mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 04:14:44 +01:00
98f7f39d1c
Not adding any explicit FPPP support, as I don't think add/remove of names can be handled any better than full reformatting.
9 lines
108 B
Plaintext
9 lines
108 B
Plaintext
Named arguments
|
|
-----
|
|
<?php
|
|
foo(a: $b, c: $d);
|
|
bar(class: 0);
|
|
-----
|
|
!!php7
|
|
foo(a: $b, c: $d);
|
|
bar(class: 0); |