?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle

?? Viewing: AbstractCacheAdapter.php

<?php

namespace Guzzle\Cache;

/**
 * Abstract cache adapter
 */
abstract class AbstractCacheAdapter implements CacheAdapterInterface
{
    protected $cache;

    /**
     * Get the object owned by the adapter
     *
     * @return mixed
     */
    public function getCacheObject()
    {
        return $this->cache;
    }
}


??

??