Neos\Flow\Reflection\ReflectionService::getDoctrinePhpParser PHP 메소드

getDoctrinePhpParser() 보호된 메소드

Retrieves a singleton instance of the Doctrine PhpParser
protected getDoctrinePhpParser ( ) : Doctrine\Common\Annotations\PhpParser
리턴 Doctrine\Common\Annotations\PhpParser
    protected function getDoctrinePhpParser()
    {
        if ($this->doctrinePhpParser === null) {
            $this->doctrinePhpParser = new PhpParser();
        }
        return $this->doctrinePhpParser;
    }
ReflectionService