8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a98046d commit a1d866eCopy full SHA for a1d866e
src/Symfony/Bundle/DoctrineBundle/Registry.php
@@ -113,12 +113,12 @@ public function getEntityManager($name = null)
113
*
114
* @param string $entityName The name of the entity.
115
* @param string $entityManagerNAme The entity manager name (null for the default one)
116
+ *
117
* @return Doctrine\ORM\EntityRepository
118
*/
119
public function getRepository($entityName, $entityManagerName = null)
120
{
- return $this->getEntityManager($entityManagerName)
121
- ->getRespository($entityName);
+ return $this->getEntityManager($entityManagerName)->getRepository($entityName);
122
}
123
124
/**
0 commit comments