LMongo\Connection::getCacheManager PHP Méthode

getCacheManager() public méthode

Get the cache manager instance.
public getCacheManager ( ) : Illuminate\Cache\CacheManager
Résultat Illuminate\Cache\CacheManager
    public function getCacheManager()
    {
        if ($this->cache instanceof Closure) {
            $this->cache = call_user_func($this->cache);
        }
        return $this->cache;
    }