PATH:
home
/
lab2454c
/
foreclass.com
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
guzzle
/
guzzle
/
src
/
Guzzle
/
Cache
<?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; } }
[-] AbstractCacheAdapter.php
[edit]
[-] CacheAdapterFactory.php
[edit]
[-] composer.json
[edit]
[-] CacheAdapterInterface.php
[edit]
[+]
..
[-] Zf1CacheAdapter.php
[edit]
[-] Zf2CacheAdapter.php
[edit]
[-] NullCacheAdapter.php
[edit]
[-] ClosureCacheAdapter.php
[edit]
[-] DoctrineCacheAdapter.php
[edit]