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