for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TEiling\Scd16\Cache;
class DummyCache implements CacheInterface
{
/**
* @inheritdoc
*/
public function test($id)
return false;
}
public function save($data, $id = null, $tags = [], $specificLifetime = null, $priority = 8)
return true;
public function load($id, $doNotTestCacheValidity = false, $doNotUnserialize = false)