Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
save_bvnghean.vn
/
wp-content
/
plugins
/
backupbuddy
/
destinations
/
_s3lib2
/
Guzzle
/
Cache
:
AbstractCacheAdapter.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; } }