Este repositório foi arquivado em 2025-08-22. Você pode visualizar arquivos e cloná-lo, mas não pode fazer push, abrir issues ou pull requests.
Files
dumbo/vendor/nikic/php-parser/test/code/prettyPrinter/closure.test
2014-11-25 16:42:40 +01:00

18 linhas
394 B
Plaintext

Closures
-----
<?php
$closureWithArgs = function ($arg1, $arg2) {
$comment = 'closure body';
};
$closureWithArgsAndVars = function ($arg1, $arg2) use($var1, $var2) {
$comment = 'closure body';
};
-----
$closureWithArgs = function ($arg1, $arg2) {
$comment = 'closure body';
};
$closureWithArgsAndVars = function ($arg1, $arg2) use($var1, $var2) {
$comment = 'closure body';
};