Neos\Flow\Persistence\Doctrine\Mapping\ClassMetadata::getReflectionClass PHP 메소드

getReflectionClass() 공개 메소드

Gets the ReflectionClass instance of the mapped class.
public getReflectionClass ( ) : ClassReflection
리턴 Neos\Flow\Reflection\ClassReflection
    public function getReflectionClass()
    {
        if ($this->reflClass === null) {
            $this->_initializeReflection();
        }
        return $this->reflClass;
    }