You are here

public function TestManagerRegistry::getAliasNamespace in Plug 7

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

lib/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__;
}