| Total Complexity | 1 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | final class Filters |
||
| 8 | { |
||
| 9 | public const EQ = 'eq'; |
||
| 10 | public const NEQ = 'neq'; |
||
| 11 | public const LT = 'lt'; |
||
| 12 | public const LTE = 'lte'; |
||
| 13 | public const GT = 'gt'; |
||
| 14 | public const GTE = 'gte'; |
||
| 15 | public const BETWEEN = 'between'; |
||
| 16 | public const CONTAINS = 'contains'; |
||
| 17 | public const STARTSWITH = 'startswith'; |
||
| 18 | public const ENDSWITH = 'endswith'; |
||
| 19 | public const IN = 'in'; |
||
| 20 | public const NOTIN = 'notin'; |
||
| 21 | public const ISNULL = 'isnull'; |
||
| 22 | public const SORT = 'sort'; |
||
| 23 | |||
| 24 | /** @return string[] */ |
||
| 25 | public static function toArray(): array |
||
| 45 |