1 | <?php |
||
12 | class Operators |
||
13 | { |
||
14 | public static function doc(array $query) |
||
18 | |||
19 | public static function not(ExpressionInterface $expr) |
||
23 | |||
24 | public static function exists() |
||
28 | |||
29 | public static function type($type) |
||
33 | |||
34 | public static function in(array $list) |
||
38 | |||
39 | public static function regexp($regexp) |
||
43 | |||
44 | public static function equals($operand) |
||
48 | |||
49 | public static function same($operand) |
||
53 | |||
54 | public static function greaterThan($operand) |
||
58 | |||
59 | public static function greaterThanOrEquals($operand) |
||
66 | |||
67 | public static function lessThan($operand) |
||
71 | |||
72 | public static function lessThanOrEquals($operand) |
||
79 | |||
80 | public static function all(ExpressionInterface ...$exprs) |
||
84 | |||
85 | public static function atLeastOne(ExpressionInterface ...$exprs) |
||
89 | |||
90 | public static function exactly($count, ExpressionInterface ...$exprs) |
||
94 | |||
95 | public static function none(ExpressionInterface ...$exprs) |
||
99 | |||
100 | public static function one(ExpressionInterface ...$exprs) |
||
104 | |||
105 | public static function listAll(ExpressionInterface $expr) |
||
109 | |||
110 | public static function listAtLeastOne(ExpressionInterface $expr) |
||
114 | |||
115 | public static function listExactly($count, ExpressionInterface $expr) |
||
119 | |||
120 | public static function listNone(ExpressionInterface $expr) |
||
124 | |||
125 | public static function listOne(ExpressionInterface $expr) |
||
129 | } |
||
130 |