for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* (c) Jean-François Lépine <https://twitter.com/Halleck45>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Hal\Component\Cache;
use Hal\Component\Result\ResultCollection;
/**
* Cache
* @author Jean-François Lépine <https://twitter.com/Halleck45>
class CacheNull implements Cache {
* @inheritdoc
public function set($key, $value) {
}
public function get($key) {
public function has($key) {
return false;
public function clear($key) {