Blast\Orm\Connection::getReflectionCache PHP Method

getReflectionCache() public method

public getReflectionCache ( ) : Doctrine\Common\Cache\Cache | null
return Doctrine\Common\Cache\Cache | null
    public function getReflectionCache()
    {
        if (null === $this->reflectionCache) {
            $cache = $this->getInternalCache();
            $this->reflectionCache = clone $cache;
        }
        return $this->reflectionCache;
    }