LMongo\Connection::getCacheManager PHP Method

getCacheManager() public method

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