1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?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);
- }
|