| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 11 | final class Operator extends Constraint |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | public string $message = 'validation.pagination.operator.invalid'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var string[] |
||
| 20 | */ |
||
| 21 | public array $operators = FilterableInterface::OPERATORS; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return string[] |
||
| 25 | */ |
||
| 26 | public function getTargets(): array |
||
| 31 |