radar-wp/vendor/guzzle/cache/Guzzle/Cache/AbstractCacheAdapter.php

22 lines
327 B
PHP
Raw Permalink Normal View History

2015-02-24 16:25:12 +01:00
<?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;
}
}