You are here

public function TestManagerRegistry::getAliasNamespace in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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

TestManagerRegistry

Namespace

Doctrine\Tests\Common\Persistence

Code

public function getAliasNamespace($alias) {
  return __NAMESPACE__;
}