Neos\Flow\Persistence\Doctrine\Mapping\ClassMetadata::_initializeReflection PHP Method

_initializeReflection() protected method

Initializes $this->reflClass and a number of related variables.
protected _initializeReflection ( ) : void
return void
    protected function _initializeReflection()
    {
        $this->reflClass = new ClassReflection($this->name);
        $this->namespace = $this->reflClass->getNamespaceName();
        $this->name = $this->rootEntityName = $this->reflClass->getName();
        $this->table['name'] = $this->reflClass->getShortName();
    }