Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
StringOrIntList | |
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\Fixtures\Lists; |
3 | |
4 | use Apie\Core\Lists\ItemList; |
5 | |
6 | class StringOrIntList extends ItemList |
7 | { |
8 | public function offsetGet($offset): string|int |
9 | { |
10 | return parent::offsetGet($offset); |
11 | } |
12 | } |