7e4fcfd05dae7a28f1d4c3746a03064018950e8f
[yaffs-website] / vendor / nikic / php-parser / test / code / prettyPrinter / expr / closure.test
1 Closures
2 -----
3 <?php
4
5 $closureWithArgs = function ($arg1, $arg2) {
6     $comment = 'closure body';
7 };
8
9 $closureWithArgsAndVars = function ($arg1, $arg2) use($var1, $var2) {
10     $comment = 'closure body';
11 };
12 -----
13 $closureWithArgs = function ($arg1, $arg2) {
14     $comment = 'closure body';
15 };
16 $closureWithArgsAndVars = function ($arg1, $arg2) use($var1, $var2) {
17     $comment = 'closure body';
18 };