diff --git a/Civi/Api4/Query/Api4Query.php b/Civi/Api4/Query/Api4Query.php index 03e1b11a42a0..3677d9e615fa 100644 --- a/Civi/Api4/Query/Api4Query.php +++ b/Civi/Api4/Query/Api4Query.php @@ -22,13 +22,8 @@ * * negated: ['NOT', $node] * * branch: ['OR|NOT', [$node, $node, ...]] * - * Leaf operators are one of: - * - * * '=', '<=', '>=', '>', '<', 'LIKE', "<>", "!=", - * * 'NOT LIKE', 'IN', 'NOT IN', 'BETWEEN', 'NOT BETWEEN', - * * 'IS NOT NULL', 'IS NULL', 'CONTAINS', 'NOT CONTAINS', - * * 'IS EMPTY', 'IS NOT EMPTY', 'REGEXP', 'NOT REGEXP' - * * 'REGEXP BINARY', 'NOT REGEXP BINARY' + * For leaf operators, + * @see CoreUtil::getOperators() */ abstract class Api4Query {