for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yiisoft\Cache\Tests\Dependency;
use Yiisoft\Cache\CacheInterface;
use Yiisoft\Cache\Dependency\Dependency;
/**
* Class MockDependency
*/
class MockDependency extends Dependency
{
protected function generateDependencyData(CacheInterface $cache)
return $this->data;
}