Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class Class_ extends Annotation |
||
21 | { |
||
22 | /** @var Constant[] */ |
||
23 | public $constants = []; |
||
24 | |||
25 | /** @var Method[] */ |
||
26 | public $methods = []; |
||
27 | |||
28 | /** @var Property[] */ |
||
29 | public $properties = []; |
||
30 | |||
31 | 6 | public function __construct(iterable $annotations, \ReflectionClass $reflection) |
|
32 | { |
||
33 | 6 | $this->reflection = $reflection; |
|
34 | 6 | parent::__construct($annotations); |
|
35 | 6 | } |
|
36 | |||
37 | 3 | public function getReflection(): \ReflectionClass |
|
40 | } |
||
41 | } |
||
42 |