Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class Method extends Annotation |
||
21 | { |
||
22 | /** @var Parameter[] */ |
||
23 | public $parameters = []; |
||
24 | |||
25 | 6 | public function __construct(iterable $annotations, \ReflectionMethod $reflection) |
|
26 | { |
||
27 | 6 | $this->reflection = $reflection; |
|
28 | 6 | parent::__construct($annotations); |
|
29 | 6 | } |
|
30 | |||
31 | 6 | public function getReflection(): \ReflectionMethod |
|
34 | } |
||
35 | } |
||
36 |