Doctrine\Common\Persistence\Mapping\AbstractClassMetadataFactory::getReflectionService PHP Method

getReflectionService() public method

Gets the reflection service associated with this metadata factory.
public getReflectionService ( ) : Doctrine\Common\Persistence\Mapping\ReflectionService
return Doctrine\Common\Persistence\Mapping\ReflectionService
    public function getReflectionService()
    {
        if ($this->reflectionService === null) {
            $this->reflectionService = new RuntimeReflectionService();
        }
        return $this->reflectionService;
    }