We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d6d41d commit ca8b843Copy full SHA for ca8b843
src/Symfony/Bridge/Doctrine/Security/User/EntityUserProvider.php
@@ -118,7 +118,7 @@ private function getEntityManager()
118
119
private function getRepository()
120
{
121
- return $this->getEntityManager()->getRepository($this->getClass());
+ return $this->getEntityManager()->getRepository($this->classOrAlias);
122
}
123
124
private function getClass()
@@ -138,6 +138,6 @@ private function getClass()
138
139
private function getClassMetadata()
140
141
- return $this->getEntityManager()->getClassMetadata($this->getClass());
+ return $this->getEntityManager()->getClassMetadata($this->classOrAlias);
142
143
0 commit comments