diff options
Diffstat (limited to 'app/class/Flywheel/Predicate.php')
-rw-r--r-- | app/class/Flywheel/Predicate.php | 11 |
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' + ); + } +} |