We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ec9488 commit c7a1f06Copy full SHA for c7a1f06
src/Filter/SearchOptions.php
@@ -14,13 +14,13 @@
14
final class SearchOptions
15
{
16
public const CONTAINS = 'contains';
17
- public const NOT_CONTAINS = 'not contains';
+ public const NOT_CONTAINS = 'not_contains';
18
public const EQUAL = 'equal';
19
- public const NOT_EQUAL = 'not equal';
20
- public const STARTS_WITH = 'starts with';
21
- public const ENDS_WITH = 'ends with';
+ public const NOT_EQUAL = 'not_equal';
+ public const STARTS_WITH = 'starts_with';
+ public const ENDS_WITH = 'ends_with';
22
public const EMPTY = 'empty';
23
- public const NOT_EMPTY = 'not empty';
+ public const NOT_EMPTY = 'not_empty';
24
public const IN = 'in';
25
- public const NOT_IN = 'not in';
+ public const NOT_IN = 'not_in';
26
}
0 commit comments