parser/phpast/samples/closures.php
2022-07-25 19:00:26 +01:00

7 lines
54 B
PHP

<?php
$long = function () {
};
$short = fn () => 1;