1 | <?php |
||
8 | class Get extends Input |
||
9 | { |
||
10 | /** @noinspection PhpMissingParentConstructorInspection |
||
11 | * Initialize the $access array, remove subclass members |
||
12 | */ |
||
13 | public function __construct() |
||
17 | |||
18 | /** |
||
19 | * Sets a parameter in $_GET and $_REQUEST |
||
20 | * |
||
21 | * @param string $name Parameter name |
||
22 | * @param mixed $value Value to set |
||
23 | */ |
||
24 | public function set($name, $value) |
||
29 | } |
||
30 |