| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class ExpectationCollection implements IteratorAggregate |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var ResponseExpectationInterface[] |
||
| 15 | */ |
||
| 16 | private readonly array $expectations; |
||
| 17 | |||
| 18 | 7 | public function __construct( |
|
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @return ArrayIterator<int, ResponseExpectationInterface> |
||
| 26 | */ |
||
| 27 | 5 | public function getIterator(): ArrayIterator |
|
| 32 |