1
0
mirror of https://github.com/elyby/accounts.git synced 2025-03-04 15:43:23 +05:30

14 lines
261 B
PHP
Raw Normal View History

<?php
namespace common\components\Redis;
use yii\di\Instance;
class Cache extends \yii\redis\Cache {
public function init() {
\yii\caching\Cache::init();
$this->redis = Instance::ensure($this->redis, ConnectionInterface::class);
}
}