summaryrefslogtreecommitdiffstats
path: root/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Cache/NullCacheAdapter.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/3rdparty/aws-sdk-php/Guzzle/Cache/NullCacheAdapter.php')
-rw-r--r--apps/files_external/3rdparty/aws-sdk-php/Guzzle/Cache/NullCacheAdapter.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Cache/NullCacheAdapter.php b/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Cache/NullCacheAdapter.php
deleted file mode 100644
index 68bd4af97c5..00000000000
--- a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Cache/NullCacheAdapter.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-namespace Guzzle\Cache;
-
-/**
- * Null cache adapter
- */
-class NullCacheAdapter extends AbstractCacheAdapter
-{
- public function __construct() {}
-
- public function contains($id, array $options = null)
- {
- return false;
- }
-
- public function delete($id, array $options = null)
- {
- return true;
- }
-
- public function fetch($id, array $options = null)
- {
- return false;
- }
-
- public function save($id, $data, $lifeTime = false, array $options = null)
- {
- return true;
- }
-}