1
0
mirror of synced 2025-01-31 04:21:44 +03:00

Added method to allow retrieve all registered entity namespace aliases.

This commit is contained in:
Guilherme Blanco 2011-05-06 01:41:34 -03:00
parent fe66d8bc04
commit 19dfe7b891

View File

@ -164,6 +164,16 @@ class Configuration extends \Doctrine\DBAL\Configuration
$this->_attributes['entityNamespaces'] = $entityNamespaces;
}
/**
* Retrieves the list of registered entity namespace aliases.
*
* @return array
*/
public function getEntityNamespaces()
{
return $this->_attributes['entityNamespaces'];
}
/**
* Gets the cache driver implementation that is used for the mapping metadata.
*