for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doctrine\Common\Cache;
/**
* Void cache driver. The cache could be of use in tests where you don`t need to cache anything.
*
* @link www.doctrine-project.org
*/
class VoidCache extends CacheProvider
{
* {@inheritDoc}
protected function doFetch($id)
return false;
}
protected function doContains($id)
protected function doSave($id, $data, $lifeTime = 0)
return true;
protected function doDelete($id)
protected function doFlush()
protected function doGetStats()
return;