| Total Complexity | 5 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class InputData implements InputDataInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var ReflectionClass |
||
| 25 | */ |
||
| 26 | private $xReflectionClass; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param ReflectionClass|string $xClass |
||
| 30 | * @param array $aMethods |
||
| 31 | * @param array $aProperties |
||
| 32 | */ |
||
| 33 | public function __construct(ReflectionClass|string $xClass, |
||
| 37 | } |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @inheritDoc |
||
| 41 | */ |
||
| 42 | public function getReflectionClass(): ReflectionClass |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @inheritDoc |
||
| 49 | */ |
||
| 50 | public function getMethods(): array |
||
| 51 | { |
||
| 52 | return $this->aMethods; |
||
| 53 | } |
||
| 54 | |||
| 55 | /** |
||
| 56 | * @inheritDoc |
||
| 57 | */ |
||
| 58 | public function getProperties(): array |
||
| 61 | } |
||
| 62 | } |
||
| 63 |