Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| ValueOptionList | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| offsetGet | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | namespace Apie\Core\Lists; |
| 3 | |
| 4 | use Apie\Core\Dto\ValueOption; |
| 5 | |
| 6 | class ValueOptionList extends ItemList |
| 7 | { |
| 8 | protected bool $mutable = false; |
| 9 | |
| 10 | public function offsetGet(mixed $offset): ValueOption |
| 11 | { |
| 12 | return parent::offsetGet($offset); |
| 13 | } |
| 14 | } |