123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <?php
-
-
- namespace Doctrine\Common\Annotations;
-
- use Doctrine\Common\Annotations\Reader;
-
-
- class IndexedReader implements Reader
- {
-
-
- private $delegate;
-
-
-
- public function __construct(Reader $reader)
- {
- $this->delegate = $reader;
- }
-
-
-
- public function getClassAnnotations(\ReflectionClass $class)
- {
- $annotations = array();
- foreach ($this->delegate->getClassAnnotations($class) as $annot) {
- $annotations[get_class($annot)] = $annot;
- }
-
- return $annotations;
- }
-
-
-
- public function getClassAnnotation(\ReflectionClass $class, $annotation)
- {
- return $this->delegate->getClassAnnotation($class, $annotation);
- }
-
-
-
- public function getMethodAnnotations(\ReflectionMethod $method)
- {
- $annotations = array();
- foreach ($this->delegate->getMethodAnnotations($method) as $annot) {
- $annotations[get_class($annot)] = $annot;
- }
-
- return $annotations;
- }
-
-
-
- public function getMethodAnnotation(\ReflectionMethod $method, $annotation)
- {
- return $this->delegate->getMethodAnnotation($method, $annotation);
- }
-
-
-
- public function getPropertyAnnotations(\ReflectionProperty $property)
- {
- $annotations = array();
- foreach ($this->delegate->getPropertyAnnotations($property) as $annot) {
- $annotations[get_class($annot)] = $annot;
- }
-
- return $annotations;
- }
-
-
-
- public function getPropertyAnnotation(\ReflectionProperty $property, $annotation)
- {
- return $this->delegate->getPropertyAnnotation($property, $annotation);
- }
-
-
-
- public function __call($method, $args)
- {
- return call_user_func_array(array($this->delegate, $method), $args);
- }
- }
|