public function TestManagerRegistry::getAliasNamespace in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/ManagerRegistryTest.php \Doctrine\Tests\Common\Persistence\TestManagerRegistry::getAliasNamespace()
Resolves a registered namespace alias to the full namespace.
This method looks for the alias in all registered object managers.
Parameters
string $alias The alias.:
Return value
string The full namespace.
Overrides ManagerRegistry::getAliasNamespace
File
- vendor/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ ManagerRegistryTest.php, line 93
Class
Namespace
Doctrine\Tests\Common\PersistenceCode
public function getAliasNamespace($alias) {
return __NAMESPACE__;
}