| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 50% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class AnnotatedMethod |
||
| 11 | { |
||
| 12 | private ReflectionMethod $method; |
||
| 13 | private $annotation; |
||
| 14 | |||
| 15 | 1 | public function __construct(ReflectionMethod $method, $annotation) |
|
| 19 | 1 | } |
|
| 20 | |||
| 21 | public function getClass(): ReflectionClass |
||
| 24 | } |
||
| 25 | |||
| 26 | public function getMethod(): ReflectionMethod |
||
| 27 | { |
||
| 28 | return $this->method; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getAnnotation() |
||
| 34 | } |
||
| 35 | } |
||
| 36 |