From 353085857ba6d17694e5322e2eefb0d8fec6380d Mon Sep 17 00:00:00 2001 From: Brikou CARRE Date: Tue, 10 Apr 2012 11:04:07 +0200 Subject: [PATCH] fixed typehints in docblocks (IDE completion works now) --- src/Symfony/Bundle/DoctrineBundle/Registry.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Bundle/DoctrineBundle/Registry.php b/src/Symfony/Bundle/DoctrineBundle/Registry.php index a14545973c..eb6cce353d 100644 --- a/src/Symfony/Bundle/DoctrineBundle/Registry.php +++ b/src/Symfony/Bundle/DoctrineBundle/Registry.php @@ -109,7 +109,7 @@ class Registry implements RegistryInterface * * @param string $name The entity manager name (null for the default one) * - * @return EntityManager + * @return \Doctrine\ORM\EntityManager */ public function getEntityManager($name = null) { @@ -154,7 +154,7 @@ class Registry implements RegistryInterface * * @param string $name The entity manager name (null for the default one) * - * @return EntityManager + * @return \Doctrine\ORM\EntityManager */ public function resetEntityManager($name = null) { @@ -210,7 +210,7 @@ class Registry implements RegistryInterface * @param string $entityName The name of the entity. * @param string $entityManagerName The entity manager name (null for the default one) * - * @return Doctrine\ORM\EntityRepository + * @return \Doctrine\ORM\EntityRepository */ public function getRepository($entityName, $entityManagerName = null) { @@ -222,7 +222,7 @@ class Registry implements RegistryInterface * * @param string $class A Doctrine Entity class name * - * @return EntityManager|null + * @return \Doctrine\ORM\EntityManager|null */ public function getEntityManagerForClass($class) {