From 8df3db566a3a937b45ebf11adb90d265e6f5e2d4 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sun, 17 Nov 2019 20:45:02 +0100 Subject: initial checking of customized version 1.0rc9 --- .../guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 vendor/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php (limited to 'vendor/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php') diff --git a/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php b/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php new file mode 100644 index 0000000..48f8e24 --- /dev/null +++ b/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php @@ -0,0 +1,44 @@ +cache = $cache; + } + + public function contains($id, array $options = null) + { + return $this->cache->test($id); + } + + public function delete($id, array $options = null) + { + return $this->cache->remove($id); + } + + public function fetch($id, array $options = null) + { + return $this->cache->load($id); + } + + public function save($id, $data, $lifeTime = false, array $options = null) + { + return $this->cache->save($data, $id, array(), $lifeTime); + } +} -- cgit v1.2.3-54-g00ecf