Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
NoLockStorage
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 5
30
0.00% covered (danger)
0.00%
0 / 1
 save
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 waitAndSave
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 putOffExpiration
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 delete
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 exists
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
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) 2019 (original work) Open Assessment Technologies SA;
19 *
20 *
21 */
22
23namespace oat\oatbox\mutex;
24
25use Symfony\Component\Lock\StoreInterface;
26use Symfony\Component\Lock\Key;
27
28/**
29 * Class NoLockStorage
30 * @package oat\oatbox\mutex
31 * @author Aleh Hutnikau, <goodnickoff@gmail.com>
32 */
33class NoLockStorage implements StoreInterface
34{
35    /**
36     * @inheritdoc
37     */
38    public function save(Key $key)
39    {
40    }
41
42    /**
43     * @inheritdoc
44     */
45    public function waitAndSave(Key $key)
46    {
47    }
48
49    /**
50     * @inheritdoc
51     */
52    public function putOffExpiration(Key $key, $ttl)
53    {
54    }
55
56    /**
57     * @inheritdoc
58     */
59    public function delete(Key $key)
60    {
61    }
62
63    /**
64     * @inheritdoc
65     */
66    public function exists(Key $key)
67    {
68        return false;
69    }
70}