Path : /srv/www/vhosts/rozzo/wp-content/plugins/backwpup/vendor/Guzzle/Cache/ |
Current File : /srv/www/vhosts/rozzo/wp-content/plugins/backwpup/vendor/Guzzle/Cache/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; } }