abstract protected function AbstractClassMetadataFactory::doLoadMetadata in Plug 7
Actually loads the metadata from the underlying metadata.
Parameters
ClassMetadata $class:
ClassMetadata|null $parent:
bool $rootEntityFound:
array $nonSuperclassParents All parent class names: that are not marked as mapped superclasses.
Return value
void
1 call to AbstractClassMetadataFactory::doLoadMetadata()
- AbstractClassMetadataFactory::loadMetadata in lib/
doctrine/ common/ lib/ Doctrine/ Common/ Persistence/ Mapping/ AbstractClassMetadataFactory.php - Loads the metadata of the class in question and all it's ancestors whose metadata is still not loaded.
1 method overrides AbstractClassMetadataFactory::doLoadMetadata()
- TestClassMetadataFactory::doLoadMetadata in lib/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ Mapping/ ClassMetadataFactoryTest.php - Actually loads the metadata from the underlying metadata.
File
- lib/
doctrine/ common/ lib/ Doctrine/ Common/ Persistence/ Mapping/ AbstractClassMetadataFactory.php, line 376
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 doLoadMetadata($class, $parent, $rootEntityFound, array $nonSuperclassParents);