Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| StringHashmap | |
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\Core\Lists; |
| 3 | |
| 4 | class StringHashmap extends ItemHashmap |
| 5 | { |
| 6 | protected bool $mutable = false; |
| 7 | |
| 8 | public function offsetGet(mixed $offset): string |
| 9 | { |
| 10 | return parent::offsetGet($offset); |
| 11 | } |
| 12 | } |