Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
ReflectionHashmap | |
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 | namespace Apie\Core\Context; |
3 | |
4 | use Apie\Core\Lists\ItemHashmap; |
5 | use ReflectionMethod; |
6 | use ReflectionParameter; |
7 | use ReflectionProperty; |
8 | use ReflectionType; |
9 | |
10 | /** |
11 | * Contains a list of methods and/or properties. |
12 | */ |
13 | final class ReflectionHashmap extends ItemHashmap |
14 | { |
15 | public function offsetGet(mixed $offset): ReflectionType|ReflectionMethod|ReflectionProperty|ReflectionParameter |
16 | { |
17 | return parent::offsetGet($offset); |
18 | } |
19 | } |