Welcome to mirror list, hosted at ThFree Co, Russian Federation.

closure.test « expr « prettyPrinter « code « test « php-parser « nikic « vendor - github.com/nextcloud/php-static-scanner-instrumentalization.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e4fcfd05dae7a28f1d4c3746a03064018950e8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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';
};