Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
DropdownOptionList | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
offsetGet | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Apie\CmsApiDropdownOption\Lists; |
3 | |
4 | use Apie\CmsApiDropdownOption\Dtos\DropdownOption; |
5 | use Apie\Core\Lists\ItemList; |
6 | |
7 | class DropdownOptionList extends ItemList |
8 | { |
9 | public function offsetGet(mixed $offset): DropdownOption |
10 | { |
11 | return parent::offsetGet($offset); |
12 | } |
13 | } |