1 | <?php |
||
10 | final class FactoryResult implements Result |
||
11 | { |
||
12 | private $factory; |
||
13 | private $result; |
||
14 | |||
15 | public function __construct(callable $factory, Result $result) |
||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function take($offset, $limit) |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public function count() |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function getIterator() |
||
46 | } |
||
47 |