Skip to content

Commit c7a1f06

Browse files
committed
BUGFIX: change constrain definition
1 parent 4ec9488 commit c7a1f06

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Filter/SearchOptions.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
final class SearchOptions
1515
{
1616
public const CONTAINS = 'contains';
17-
public const NOT_CONTAINS = 'not contains';
17+
public const NOT_CONTAINS = 'not_contains';
1818
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';
19+
public const NOT_EQUAL = 'not_equal';
20+
public const STARTS_WITH = 'starts_with';
21+
public const ENDS_WITH = 'ends_with';
2222
public const EMPTY = 'empty';
23-
public const NOT_EMPTY = 'not empty';
23+
public const NOT_EMPTY = 'not_empty';
2424
public const IN = 'in';
25-
public const NOT_IN = 'not in';
25+
public const NOT_IN = 'not_in';
2626
}

0 commit comments

Comments
 (0)