diff --git a/flextype/core/Entries.php b/flextype/core/Entries.php index f5fd97d4..606fa412 100755 --- a/flextype/core/Entries.php +++ b/flextype/core/Entries.php @@ -61,6 +61,14 @@ class Entries 'member_of' => Comparison::MEMBER_OF, 'start_with' => Comparison::STARTS_WITH, 'ends_with' => Comparison::ENDS_WITH, + + // alternative comparison syntax + 'eq' => Comparison::EQ, + 'neq' => Comparison::NEQ, + 'lt' => Comparison::LT, + 'lte' => Comparison::LTE, + 'gt' => Comparison::GT, + 'gte' => Comparison::GTE ]; /**