LdapTools\Cache\DoctrineCache::getCache PHP Method

getCache() protected method

protected getCache ( ) : FileSystemCache
return FileSystemCache
    protected function getCache()
    {
        if (!$this->cache) {
            $this->cache = new FilesystemCache($this->cacheFolder);
        }
        return $this->cache;
    }