parser/phpast/samples/closures.php

7 lines
54 B
PHP
Raw Normal View History

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