| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class ActionMetadata |
||
| 17 | { |
||
| 18 | private $reflectionClass; |
||
| 19 | |||
| 20 | private $shortName; |
||
| 21 | |||
| 22 | 31 | public function __construct(\ReflectionClass $reflectionClass, string $shortName) |
|
| 23 | { |
||
| 24 | 31 | $this->reflectionClass = $reflectionClass; |
|
| 25 | 31 | $this->shortName = $shortName; |
|
| 26 | 31 | } |
|
| 27 | |||
| 28 | 2 | public function getReflectionClass(): \ReflectionClass |
|
| 29 | { |
||
| 30 | 2 | return $this->reflectionClass; |
|
| 31 | } |
||
| 32 | |||
| 33 | 31 | public function getShortName(): string |
|
| 36 | } |
||
| 37 | } |
||
| 38 |