LdapTools\LdapManager::getCache PHP Méthode

getCache() public méthode

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