| 1 | <?php |
||
| 5 | class ClassMetadata |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var MethodMetadata[] |
||
| 9 | */ |
||
| 10 | private $methods; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var \ReflectionClass |
||
| 14 | */ |
||
| 15 | private $reflection; |
||
| 16 | |||
| 17 | public function __construct(array $methods,\ReflectionClass $reflection) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return MethodMetadata[] |
||
| 25 | */ |
||
| 26 | public function getMethods(): array |
||
| 30 | |||
| 31 | public function getMethod(string $methodName): MethodMetadata |
||
| 35 | |||
| 36 | public function isInterface(): bool |
||
| 40 | |||
| 41 | public function isAbstract(): bool |
||
| 45 | } |
||
| 46 |