AbstractCacheAdapter.php 327 B

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