Completed
Push — master ( cde499...142a11 )
by Richard
06:49
created

Request::cleanVar()   D

Complexity

Conditions 9
Paths 20

Size

Total Lines 37
Code Lines 18

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 11
CRAP Score 11.4719
Metric Value
dl 0
loc 37
ccs 11
cts 16
cp 0.6875
rs 4.909
cc 9
eloc 18
nc 20
nop 3
crap 11.4719
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
 * Request Class
16
 *
17
 * This class serves to provide a common interface to access
18
 * request variables.  This includes $_POST, $_GET, and naturally $_REQUEST.  Variables
19
 * can be passed through an input filter to avoid injection or returned raw.
20
 *
21
 * @category  Xoops\Core\Request
22
 * @package   Xoops\Core
23
 * @author    Richard Griffith <[email protected]>
24
 * @author    trabis <[email protected]>
25
 * @author    Joomla!
26
 * @copyright 2011-2015 XOOPS Project (http://xoops.org)
27
 * @license   GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
28
 * @version   Release: 1.0
29
 * @link      http://xoops.org
30
 * @since     1.0
31
 */
32
class Request extends \Xmf\Request
33
{
34
}
35