blob: 2229461bcefaa7fb9e422cf06042658cbddfe7e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
namespace WFlywheel;
class Predicate extends \JamesMoss\Flywheel\Predicate
{
public function __construct() {
$this->operators = array(
'>', '>=', '<', '<=', '==', '===', '!=', '!==', 'IN'
);
}
}
|