1 | <?php /** MicroRedisDriver */ |
||
19 | class RedisDriver extends CacheDriver |
||
20 | { |
||
21 | /** @var \Redis $driver driver redis */ |
||
22 | protected $driver; |
||
23 | |||
24 | |||
25 | /** |
||
26 | * Constructor |
||
27 | * |
||
28 | * @access public |
||
29 | * |
||
30 | * @param array $config config array |
||
31 | * |
||
32 | * @result void |
||
33 | * @throws Exception |
||
34 | */ |
||
35 | public function __construct(array $config = []) |
||
58 | |||
59 | /** |
||
60 | * @inheritdoc |
||
61 | */ |
||
62 | public function check() |
||
66 | |||
67 | /** |
||
68 | * Destructor |
||
69 | * |
||
70 | * @access public |
||
71 | * @result void |
||
72 | */ |
||
73 | public function __destruct() |
||
79 | |||
80 | /** |
||
81 | * @inheritdoc |
||
82 | */ |
||
83 | public function set($name, $value, $duration = 0) |
||
87 | |||
88 | /** |
||
89 | * @inheritdoc |
||
90 | */ |
||
91 | public function delete($name) |
||
95 | |||
96 | /** |
||
97 | * @inheritdoc |
||
98 | */ |
||
99 | public function clean() |
||
103 | |||
104 | /** |
||
105 | * @inheritdoc |
||
106 | */ |
||
107 | public function info() |
||
111 | |||
112 | /** |
||
113 | * @inheritdoc |
||
114 | */ |
||
115 | public function getMeta($id) |
||
123 | |||
124 | /** |
||
125 | * @inheritdoc |
||
126 | */ |
||
127 | public function get($name) |
||
131 | |||
132 | /** |
||
133 | * @inheritdoc |
||
134 | */ |
||
135 | public function increment($name, $offset = 1) |
||
139 | |||
140 | /** |
||
141 | * @inheritdoc |
||
142 | */ |
||
143 | public function decrement($name, $offset = 1) |
||
147 | } |
||
148 |
Scrutinizer analyzes your
composer.json
/composer.lock
file if available to determine the classes, and functions that are defined by your dependencies.It seems like the listed class was neither found in your dependencies, nor was it found in the analyzed files in your repository. If you are using some other form of dependency management, you might want to disable this analysis.