abstract protected function AbstractClassMetadataFactory::doLoadMetadata

Actually load the metadata from the underlying metadata

Parameters

ClassMetadata $class:

ClassMetadata|null $parent:

bool $rootEntityFound:

array $nonSuperclassParents classnames all parent classes that are not marked as mapped superclasses:

Return value

void

1 call to AbstractClassMetadataFactory::doLoadMetadata()
AbstractClassMetadataFactory::loadMetadata in drupal/core/vendor/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 drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/ClassMetadataFactoryTest.php
Actually load the metadata from the underlying metadata

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/AbstractClassMetadataFactory.php, line 330

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\Mapping

Code

protected abstract function doLoadMetadata($class, $parent, $rootEntityFound, array $nonSuperclassParents);