| 1 | <?php |
||
| 7 | class LazyZipKeyedIterable implements KeyedIterable |
||
| 8 | { |
||
| 9 | use LazyKeyedIterableTrait; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @var KeyedIterable |
||
| 13 | */ |
||
| 14 | private $iterable1; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var KeyedIterable |
||
| 18 | */ |
||
| 19 | private $iterable2; |
||
| 20 | |||
| 21 | public function __construct($iterable1, $iterable2) |
||
| 26 | |||
| 27 | public function getIterator() |
||
| 31 | } |