LdapTools\LdapManager::getCache PHP Method

getCache() public method

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