Reduced granularity of DefaultRepositoryFactory reference to ObjectRepository instances, in cases where consumers are completely rewrote EntityRepository.
This commit is contained in:
parent
a66fc03441
commit
3488049c18
2 changed files with 3 additions and 3 deletions
|
@ -32,7 +32,7 @@ class DefaultRepositoryFactory implements RepositoryFactory
|
||||||
/**
|
/**
|
||||||
* The list of EntityRepository instances.
|
* The list of EntityRepository instances.
|
||||||
*
|
*
|
||||||
* @var array<\Doctrine\ORM\EntityRepository>
|
* @var array<\Doctrine\Common\Persistence\ObjectRepository>
|
||||||
*/
|
*/
|
||||||
private $repositoryList = array();
|
private $repositoryList = array();
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ class DefaultRepositoryFactory implements RepositoryFactory
|
||||||
* @param \Doctrine\ORM\EntityManagerInterface $entityManager The EntityManager instance.
|
* @param \Doctrine\ORM\EntityManagerInterface $entityManager The EntityManager instance.
|
||||||
* @param string $entityName The name of the entity.
|
* @param string $entityName The name of the entity.
|
||||||
*
|
*
|
||||||
* @return \Doctrine\ORM\EntityRepository
|
* @return \Doctrine\Common\Persistence\ObjectRepository
|
||||||
*/
|
*/
|
||||||
protected function createRepository(EntityManagerInterface $entityManager, $entityName)
|
protected function createRepository(EntityManagerInterface $entityManager, $entityName)
|
||||||
{
|
{
|
||||||
|
|
|
@ -35,7 +35,7 @@ interface RepositoryFactory
|
||||||
* @param \Doctrine\ORM\EntityManagerInterface $entityManager The EntityManager instance.
|
* @param \Doctrine\ORM\EntityManagerInterface $entityManager The EntityManager instance.
|
||||||
* @param string $entityName The name of the entity.
|
* @param string $entityName The name of the entity.
|
||||||
*
|
*
|
||||||
* @return \Doctrine\ORM\EntityRepository
|
* @return \Doctrine\Common\Persistence\ObjectRepository
|
||||||
*/
|
*/
|
||||||
public function getRepository(EntityManagerInterface $entityManager, $entityName);
|
public function getRepository(EntityManagerInterface $entityManager, $entityName);
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue