Total Complexity | 2 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class Constant extends Annotation |
||
21 | { |
||
22 | 3 | public function __construct(iterable $annotations, \ReflectionClassConstant $reflection) |
|
23 | { |
||
24 | 3 | $this->reflection = $reflection; |
|
25 | 3 | parent::__construct($annotations); |
|
26 | 3 | } |
|
27 | |||
28 | 3 | public function getReflection(): \ReflectionClassConstant |
|
31 | } |
||
32 | } |
||
33 |