Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
IntegerHashmap | |
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 | |
3 | namespace Apie\Core\Lists; |
4 | |
5 | class IntegerHashmap extends ItemHashmap |
6 | { |
7 | public function offsetGet(mixed $offset): int |
8 | { |
9 | return parent::offsetGet($offset); |
10 | } |
11 | } |