From 07e1c1e2e1d9187765879053e9a8c3af7670e1bb Mon Sep 17 00:00:00 2001 From: Rafael Dohms Date: Wed, 10 Aug 2011 15:10:09 -0300 Subject: [PATCH] Added method to retrieve currently used Reader. This allows projects that use Doctrine to recycle the reader to use with other annotation-driven packages, like DMS\Filter and Symfony\Validator --- lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php b/lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php index 3953eb0dd..ee7db54ac 100644 --- a/lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php +++ b/lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php @@ -97,6 +97,16 @@ class AnnotationDriver implements Driver return $this->_paths; } + /** + * Retrieve the current annotation reader + * + * @return AnnotationReader + */ + public function getReader() + { + return $this->_reader; + } + /** * Get the file extension used to look for mapping files under *