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