PATH:
home
/
lab2454c
/
foreclass.com
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
guzzle
/
guzzle
/
src
/
Guzzle
/
Cache
<?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; } }
[-] 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]