Completed
Pull Request — master (#491)
by Richard
10:43
created

Registry::remove()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 6

Duplication

Lines 10
Ratio 100 %

Code Coverage

Tests 6
CRAP Score 2
Metric Value
dl 10
loc 10
ccs 6
cts 6
cp 1
rs 9.4285
cc 2
eloc 6
nc 2
nop 1
crap 2
1
<?php
2
/*
3
 You may not change or alter any portion of this comment or credits
4
 of supporting developers from this source code or any supporting source code
5
 which is considered copyrighted (c) material of the original comment or credit authors.
6
7
 This program is distributed in the hope that it will be useful,
8
 but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10
 */
11
12
namespace Xoops\Core;
13
14
/**
15
 * Registry - a non-persisted key value store
16
 *
17
 * At present only a XoopsArray
18
 *
19
 * @category  Xoops\Core\Registry
20
 * @package   Registry
21
 * @author    trabis <[email protected]>
22
 * @author    Richard Griffith <[email protected]>
23
 * @copyright 2013-2016 XOOPS Project (http://xoops.org)
24
 * @license   GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
25
 * @link      http://xoops.org
26
 */
27
class Registry extends XoopsArray
28
{
29
}
30