1
0
mirror of synced 2025-01-29 19:41:45 +03:00

Merge pull request #175 from lsmith77/get_class_name

added EntityRepository::getClassName()
This commit is contained in:
Benjamin Eberlei 2011-11-13 07:57:58 -08:00
commit e9068a1552

View File

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