1234567891011121314151617181920212223242526272829303132333435 |
- <?php
-
-
- namespace Doctrine\Common\Annotations;
-
-
- interface Reader
- {
- function getClassAnnotations(\ReflectionClass $class);
- function getClassAnnotation(\ReflectionClass $class, $annotationName);
- function getMethodAnnotations(\ReflectionMethod $method);
- function getMethodAnnotation(\ReflectionMethod $method, $annotationName);
- function getPropertyAnnotations(\ReflectionProperty $property);
- function getPropertyAnnotation(\ReflectionProperty $property, $annotationName);
- }
|