abstract protected function AbstractClassMetadataFactory::getFqcnFromAlias in Plug 7
Gets the fully qualified class-name from the namespace alias.
Parameters
string $namespaceAlias:
string $simpleClassName:
Return value
string
2 calls to AbstractClassMetadataFactory::getFqcnFromAlias()
- AbstractClassMetadataFactory::getMetadataFor in lib/
doctrine/ common/ lib/ Doctrine/ Common/ Persistence/ Mapping/ AbstractClassMetadataFactory.php - Gets the class metadata descriptor for a class.
- AbstractClassMetadataFactory::isTransient in lib/
doctrine/ common/ lib/ Doctrine/ Common/ Persistence/ Mapping/ AbstractClassMetadataFactory.php - Returns whether the class with the specified name should have its metadata loaded. This is only the case if it is either mapped directly or as a MappedSuperclass.
1 method overrides AbstractClassMetadataFactory::getFqcnFromAlias()
- TestClassMetadataFactory::getFqcnFromAlias in lib/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ Mapping/ ClassMetadataFactoryTest.php - Gets the fully qualified class-name from the namespace alias.
File
- lib/
doctrine/ common/ lib/ Doctrine/ Common/ Persistence/ Mapping/ AbstractClassMetadataFactory.php, line 137
Class
- AbstractClassMetadataFactory
- The ClassMetadataFactory is used to create ClassMetadata objects that contain all the metadata mapping informations of a class which describes how a class should be mapped to a relational database.
Namespace
Doctrine\Common\Persistence\MappingCode
protected abstract function getFqcnFromAlias($namespaceAlias, $simpleClassName);