mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-12 09:09:41 +01:00
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);
|