| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | final class ConcatIterableAggregate implements IteratorAggregate |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @param iterable<mixed, iterable<TKey, T>> $iterables |
||
| 27 | */ |
||
| 28 | 1 | public function __construct(private iterable $iterables) |
|
| 30 | 1 | } |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @return Generator<TKey, T> |
||
| 34 | */ |
||
| 35 | 1 | public function getIterator(): Generator |
|
| 48 |