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