| 1 | <?php |
||
| 8 | class Annotations |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var \ReflectionClass |
||
| 12 | */ |
||
| 13 | private $reflectionClass; |
||
| 14 | |||
| 15 | public function __construct(\ReflectionClass $reflectionClass) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param string $attribute |
||
| 22 | * @return string |
||
| 23 | * @throws AnnotationNotFound |
||
| 24 | * @throws InvalidAttributeType |
||
| 25 | */ |
||
| 26 | public function getAttributeType(string $attribute): string |
||
| 43 | } |
||
| 44 |