Blast\Orm\Connection::getReflectionCache PHP Метод

getReflectionCache() публичный Метод

public getReflectionCache ( ) : Doctrine\Common\Cache\Cache | null
Результат Doctrine\Common\Cache\Cache | null
    public function getReflectionCache()
    {
        if (null === $this->reflectionCache) {
            $cache = $this->getInternalCache();
            $this->reflectionCache = clone $cache;
        }
        return $this->reflectionCache;
    }