| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 12 | public function __construct() |
||
| 13 | { |
||
| 14 | $this->GET = \filter_input_array(\INPUT_GET) ?? \null; |
||
| 15 | $this->POST = \filter_input_array(\INPUT_POST) ?? \null; |
||
| 16 | $this->SERVER = \filter_input_array(\INPUT_SERVER) ?? \null; |
||
| 17 | $this->SESSION = \filter_var_array($_SESSION, FILTER_SANITIZE_FULL_SPECIAL_CHARS); |
||
|
|
|||
| 18 | } |
||
| 72 |