Redis::renew()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
rs 10
cc 1
eloc 1
nc 1
nop 2
1
<?php
2
3
namespace Ezcache\Cache;
4
5
/**
6
 * @codeCoverageIgnore
7
 */
8
class Redis implements CacheInterface
9
{
10
    public function setNamespace(string $namespace) : bool
11
    {
12
    }
13
14
    public function get(string $key) : array
15
    {
16
    }
17
18
    public function set(string $key, $value, int $ttl = null) : bool
19
    {
20
    }
21
22
    public function delete(string $key) : bool
23
    {
24
    }
25
26
    public function exists(string $key, bool $isValid = false) : bool
27
    {
28
    }
29
30
    public function renew(string $key, int $ttl) : bool
31
    {
32
    }
33
34
    public function clear(string $namespace = null) : bool
35
    {
36
    }
37
}
38