| 1 | <?php |
||
| 9 | class TimesInitializer extends Initializer |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Invokes the given iteratee function n times. |
||
| 13 | * |
||
| 14 | * Each invocation of iteratee is called with an index argument. Produces a |
||
| 15 | * Collection of the returned values. |
||
| 16 | * |
||
| 17 | * @param integer $count |
||
| 18 | * @param callable $function |
||
| 19 | * @return Underscore |
||
| 20 | */ |
||
| 21 | 1 | public function __invoke($count, $function /*, $context */) |
|
| 32 | } |
||
| 33 |