mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-16 07:11:19 +08:00
25 lines
458 B
PHP
25 lines
458 B
PHP
<?php
|
|
/**
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yiiunit\data\cache;
|
|
|
|
use yii\caching\Dependency;
|
|
|
|
/**
|
|
* Class MockDependency.
|
|
*
|
|
* @author Boudewijn Vahrmeijer <vahrmeijer@gmail.com>
|
|
* @since 2.0.11
|
|
*/
|
|
class MockDependency extends Dependency
|
|
{
|
|
protected function generateDependencyData($cache)
|
|
{
|
|
return $this->data;
|
|
}
|
|
}
|