1: <?php
2:
3: namespace Guzzle\Cache;
4:
5: /**
6: * Abstract cache adapter
7: */
8: abstract class AbstractCacheAdapter implements CacheAdapterInterface
9: {
10: protected $cache;
11:
12: /**
13: * Get the object owned by the adapter
14: *
15: * @return mixed
16: */
17: public function getCacheObject()
18: {
19: return $this->cache;
20: }
21: }
22: