| 1 | <?php |
||
| 17 | final class ReflectionDeclaration implements DeclarationInterface |
||
| 18 | { |
||
| 19 | /** @var ReflectionClass */ |
||
| 20 | private $reflection; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param ReflectionClass $class |
||
| 24 | */ |
||
| 25 | public function __construct(ReflectionClass $class) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | public function getShortName(): string |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return string|null |
||
| 40 | */ |
||
| 41 | public function getNamespaceName(): ?string |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return string |
||
| 48 | */ |
||
| 49 | public function getFullName(): string |
||
| 53 | } |
||
| 54 |