Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
75.00% covered (warning)
75.00%
6 / 8
75.00% covered (warning)
75.00%
6 / 8
CRAP
0.00% covered (danger)
0.00%
0 / 1
common_persistence_NoStorageKvDriver
75.00% covered (warning)
75.00%
6 / 8
75.00% covered (warning)
75.00%
6 / 8
9.00
0.00% covered (danger)
0.00%
0 / 1
 connect
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 set
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 get
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 exists
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 del
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 incr
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 decr
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 purge
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5* modify it under the terms of the GNU General Public License
6* as published by the Free Software Foundation; under version 2
7* of the License (non-upgradable).
8*
9* This program is distributed in the hope that it will be useful,
10* but WITHOUT ANY WARRANTY; without even the implied warranty of
11* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12* GNU General Public License for more details.
13*
14* You should have received a copy of the GNU General Public License
15* along with this program; if not, write to the Free Software
16* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17*
18* Copyright (c) 2015 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
19*
20* @author Lionel Lecaque  <lionel@taotesting.com>
21* @license GPLv2
22*
23*/
24
25/**
26 * Class common_persistence_NoStorageKvDriver
27 * @deprecated use \common_persistence_InMemoryKvDriver instead
28 * @author Aleh Hutnikau, <hutnikau@1pt.com>
29 */
30class common_persistence_NoStorageKvDriver implements common_persistence_KvDriver, common_persistence_Purgable
31{
32    /**
33     *
34     * @see common_persistence_Driver::connect()
35     */
36    public function connect($id, array $params)
37    {
38        return new common_persistence_KeyValuePersistence($params, $this);
39    }
40    /**
41     *
42     * @see common_persistence_KvDriver::set()
43     */
44    public function set($id, $value, $ttl = null, $nx = false)
45    {
46        return false;
47    }
48
49    /**
50     *
51     * @see common_persistence_KvDriver::get()
52     */
53    public function get($id)
54    {
55        return false;
56    }
57
58    /**
59     *
60     * @see common_persistence_KvDriver::exists()
61     */
62    public function exists($id)
63    {
64        return false;
65    }
66    /**
67     *
68     * @see common_persistence_KvDriver::del()
69     */
70    public function del($id)
71    {
72        return true;
73    }
74
75    /**
76     * Increment existing value
77     * @param string $id
78     * @return mixed
79     */
80    public function incr($id)
81    {
82        return false;
83    }
84
85    /**
86     * Decrement existing value
87     * @param $id
88     * @return mixed
89     */
90    public function decr($id)
91    {
92        return false;
93    }
94
95    /**
96     *
97     * @see common_persistence_Purgable::purge()
98     */
99    public function purge()
100    {
101        return true;
102    }
103}