XoopsRequest
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 1
dl 0
loc 2
c 0
b 0
f 0
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
/**
13
 * Request Class
14
 *
15
 * This class serves to provide a common interface to access
16
 * request variables.  This includes $_POST, $_GET, and naturally $_REQUEST.  Variables
17
 * can be passed through an input filter to avoid injection or returned raw.
18
 *
19
 * @category            Xmf\Module\Request
20
 * @package             Xmf
21
 * @author              Richard Griffith <[email protected]>
22
 * @author              trabis <[email protected]>
23
 * @author              Joomla!
24
 * @copyright       (c) 2000-2016 XOOPS Project (www.xoops.org)
25
 * @license             GNU GPL 2.0 or later (https://www.gnu.org/licenses/gpl-2.0.html)
26
 * @link                https://xoops.org
27
 * @since               2.5.7
28
 */
29
class XoopsRequest extends \Xmf\Request
30
{
31
}
32