Doctrine\OXM\Mapping\ClassMetadata::__construct PHP Méthode

__construct() public méthode

Initializes a new ClassMetadata instance that will hold the object-document mapping metadata of the class with the given name.
public __construct ( string $entityName )
$entityName string The name of the document class the new instance is used for.
    public function __construct($entityName)
    {
        parent::__construct($entityName);
        $this->reflClass = new \ReflectionClass($entityName);
        $this->namespace = $this->reflClass->getNamespaceName();
        $this->xmlName = Inflector::xmlize($this->reflClass->getShortName());
    }