1 | <?php |
||
8 | final class ExtraLazyResponseCollection implements \IteratorAggregate, ResponseCollectionInterface |
||
9 | { |
||
10 | /** @var LazyResponseCollection */ |
||
11 | private $collection; |
||
12 | |||
13 | /** |
||
14 | * ExtraLazyResponseCollection constructor. |
||
15 | * |
||
16 | * @param LazyResponseCollection $collection |
||
17 | */ |
||
18 | 2 | public function __construct(LazyResponseCollection $collection) |
|
22 | |||
23 | /** {@inheritdoc} */ |
||
24 | 1 | public function getIterator() |
|
28 | |||
29 | /** {@inheritdoc} */ |
||
30 | 1 | public function getResponse(RpcRequestInterface $request) |
|
34 | } |
||
35 |