| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | final class NormalizeIteratorAggregate implements IteratorAggregate |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var iterable<TKey, T> |
||
| 26 | */ |
||
| 27 | private iterable $iterable; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param iterable<TKey, T> $iterable |
||
| 31 | */ |
||
| 32 | 2 | public function __construct(iterable $iterable) |
|
| 35 | 2 | } |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @return Generator<int, T> |
||
| 39 | */ |
||
| 40 | 2 | public function getIterator(): Traversable |
|
| 47 |