for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Consolidation\AnnotatedCommand\Cache;
/**
* An empty cache that never stores or fetches any objects.
*/
class NullCache implements SimpleCacheInterface
{
* Test for an entry from the cache
* @param string $key
* @return boolean
public function has($key)
return false;
}
* Get an entry from the cache
* @return array
public function get($key)
return [];
* Store an entry in the cache
* @param array $data
public function set($key, $data)