Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 40% |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | final class AnnotatedProperty |
||
11 | { |
||
12 | private ReflectionProperty $property; |
||
13 | private $annotation; |
||
14 | |||
15 | 1 | public function __construct(ReflectionProperty $property, $annotation) |
|
16 | { |
||
17 | 1 | $this->property = $property; |
|
18 | 1 | $this->annotation = $annotation; |
|
19 | 1 | } |
|
20 | |||
21 | public function getClass(): ReflectionClass |
||
24 | } |
||
25 | |||
26 | public function getProperty(): ReflectionProperty |
||
29 | } |
||
30 | |||
31 | public function getAnnotation() |
||
36 |