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