| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class IteratorValue extends IteratorIterator implements ValueInterface |
||
| 21 | { |
||
| 22 | 3 | public function current(): mixed |
|
| 23 | { |
||
| 24 | 3 | $value = parent::current(); |
|
| 25 | |||
| 26 | 3 | return Wrapper::wrap($value); |
|
| 27 | } |
||
| 28 | |||
| 29 | 2 | public function unwrap(): Iterator |
|
| 32 | } |
||
| 33 | |||
| 34 | 1 | public function toArray(): ArrayValue |
|
| 37 | } |
||
| 38 | } |
||
| 39 |