1
0
mirror of synced 2025-01-18 14:31:40 +03:00

added EntityRepository::getClassName() to fullfill the ObjectRepository interface

see https://github.com/doctrine/common/pull/70
This commit is contained in:
Lukas Kahwe Smith 2011-10-25 23:21:39 +02:00
parent cfe7ab46f2
commit 0a5a23628f

View File

@ -225,6 +225,14 @@ class EntityRepository implements ObjectRepository
return $this->_entityName;
}
/**
* @return string
*/
public function getClassName()
{
return $this->getEntityName();
}
/**
* @return EntityManager
*/