1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-14 14:34:51 +02:00
Files
php-e107/vendor/phpunit/php-token-stream/tests/_fixture/closure.php
2018-02-06 03:18:31 -06:00

8 lines
259 B
PHP

<?php
$function1 = function($foo, $bar) use ($var) {};
$function2 = function(Foo $foo, $bar) use ($var) {};
$function3 = function ($foo, $bar, $baz) {};
$function4 = function (Foo $foo, $bar, $baz) {};
$function5 = function () {};
$function6 = function() {};