LdapTools\LdapManager::getCache PHP Метод

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

Retrieve the cache instance.
public getCache ( ) : LdapTools\Cache\CacheInterface
Результат LdapTools\Cache\CacheInterface
    public function getCache()
    {
        if (!$this->cache) {
            $this->cache = CacheFactory::get($this->config->getCacheType(), $this->config->getCacheOptions());
        }
        return $this->cache;
    }