Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
8 | class FilterData |
||
9 | { |
||
10 | public string $name; |
||
11 | public string $paramName; |
||
12 | public ?string $paramValue; |
||
13 | // Category is the title of the group of filters, e.g. "Status" or "User" |
||
14 | public ?string $category; |
||
15 | public bool $authorized; |
||
16 | |||
17 | 2 | public function __construct(array $data) |
|
26 |