LMongo\Connection::getCacheManager PHP 메소드

getCacheManager() 공개 메소드

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