1
0
Fork 1
mirror of https://0xacab.org/radar/radar-wp.git synced 2025-04-20 23:06:31 +02:00
radar-wp/vendor/guzzle/cache/Guzzle/Cache/AbstractCacheAdapter.php
2015-02-24 16:25:12 +01:00

21 lines
327 B
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;
}
}