Completed
Push — master ( 1eedfb...300a85 )
by François
02:42
created

Redis::delete()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
/*
4
 * This file is part of the Bouncer package.
5
 *
6
 * (c) François Hodierne <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Bouncer\Cache;
13
14
use Redis as PhpRedis;
15
16
use Bouncer\Exception;
17
18
class Redis extends AbstractCache
19
{
20
21
    protected $client;
22
23
    protected $params = array();
24
25
    protected $redisOptions = [
26
        PhpRedis::OPT_SERIALIZER => PhpRedis::SERIALIZER_PHP
27
    ];
28
29
    /**
30
     * @param PhpRedis $params
31
     */
32
    public function __construct($params = null)
33
    {
34
        // Client Injection
35
        if (is_object($params) && $params instanceof PhpRedis) {
0 ignored issues
show
Bug introduced by
The class Redis does not exist. Did you forget a USE statement, or did you not list all dependencies?

This error could be the result of:

1. Missing dependencies

PHP Analyzer uses your composer.json file (if available) to determine the dependencies of your project and to determine all the available classes and functions. It expects the composer.json to be in the root folder of your repository.

Are you sure this class is defined by one of your dependencies, or did you maybe not list a dependency in either the require or require-dev section?

2. Missing use statement

PHP does not complain about undefined classes in ìnstanceof checks. For example, the following PHP code will work perfectly fine:

if ($x instanceof DoesNotExist) {
    // Do something.
}

If you have not tested against this specific condition, such errors might go unnoticed.

Loading history...
36
            $this->setClient($params);
37
        }
38
    }
39
40
    /**
41
     * @return PhpRedis
42
     *
43
     * @throws Exception
44
     */
45
    public function getClient()
46
    {
47
        if (empty($this->client)) {
48
           throw new Exception('No client available.');
49
        }
50
        return $this->client;
51
    }
52
53
    /**
54
     * @param PhpRedis $client
55
     */
56
    public function setClient(PhpRedis $client)
57
    {
58
        $this->client = $client;
59
        foreach ($this->redisOptions as $name => $value) {
60
            $this->client->setOption($name, $value);
61
        }
62
        return $this;
63
    }
64
65
    /**
66
     * {@inheritDoc}
67
     */
68
    public function get($key)
69
    {
70
        return $this->getClient()->get($key);
71
    }
72
73
    /**
74
     * {@inheritDoc}
75
     */
76
    public function set($key, $value, $ttl = 0)
77
    {
78
        return $this->getClient()->set($key, $value, $ttl);
79
    }
80
81
    /**
82
     * {@inheritDoc}
83
     */
84
    public function delete($key)
85
    {
86
        return $this->getClient()->delete($key);
87
    }
88
}
89