forked from lino/radar-wp
Initial import.
This commit is contained in:
commit
86383280c9
428 changed files with 68738 additions and 0 deletions
21
vendor/guzzle/cache/Guzzle/Cache/AbstractCacheAdapter.php
vendored
Normal file
21
vendor/guzzle/cache/Guzzle/Cache/AbstractCacheAdapter.php
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue