| Conditions | 2 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function __construct() |
||
| 18 | { |
||
| 19 | $rawInclude = filter_input(\INPUT_GET, 'include', \FILTER_DEFAULT, \FILTER_FORCE_ARRAY); |
||
| 20 | $rawSearch = filter_input(\INPUT_GET, 'search', \FILTER_SANITIZE_STRING); |
||
| 21 | $this->include = $rawInclude ?? []; |
||
| 22 | $this->search = stripslashes_deep(sanitize_text_field($rawSearch ?: '')); |
||
| 23 | } |
||
| 30 |