mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-02-11 18:59:22 +03:00
22 lines
327 B
PHP
22 lines
327 B
PHP
<?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;
|
|
}
|
|
}
|