for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Genkgo\Cache\Adapter;
use Genkgo\Cache\CacheAdapterInterface;
/**
* Class NullAdapter
* @package Genkgo\Cache\Handler
*/
class NullAdapter implements CacheAdapterInterface
{
* Gets a cache entry
* returning null if not in cache
*
* @param $key
* @return null|mixed
public function get($key)
return null;
}
* Sets a cache entry
* @param $value
* @return void
public function set($key, $value)
return;
* Deletes a cache entry
public function delete($key)