aboutsummaryrefslogtreecommitdiff
path: root/app/class/Flywheel/Predicate.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/class/Flywheel/Predicate.php')
-rw-r--r--app/class/Flywheel/Predicate.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/class/Flywheel/Predicate.php b/app/class/Flywheel/Predicate.php
new file mode 100644
index 0000000..2922c8d
--- /dev/null
+++ b/app/class/Flywheel/Predicate.php
@@ -0,0 +1,11 @@
+<?php
+namespace Wcms\Flywheel;
+
+class Predicate extends \JamesMoss\Flywheel\Predicate
+{
+ public function __construct() {
+ $this->operators = array(
+ '>', '>=', '<', '<=', '==', '===', '!=', '!==', 'IN'
+ );
+ }
+}