Conditions | 2 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | function waterfall (array $tasks) |
||
26 | { |
||
27 | $index = 0; |
||
28 | |||
29 | $next = function () use (&$index, &$tasks, &$next) { |
||
30 | if ($index == count($tasks)) { |
||
31 | return; |
||
32 | } |
||
33 | |||
34 | $callback = $this->callOnce(function () use (&$next) { |
||
35 | $next(); |
||
36 | }); |
||
37 | |||
38 | call_user_func($tasks[$index++], $callback); |
||
39 | }; |
||
40 | |||
41 | $next(); |
||
42 | } |
||
43 | } |
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.