public function __construct($field, $keyword, $boolean = false)
 {
     parent::__construct(array());
     $this->keyword = $keyword;
     $this->field = $field;
     $this->boolean = $boolean;
 }
Example #2
0
 public function __construct($left, $right, $operator)
 {
     parent::__construct(array());
     $this->left = $left;
     $this->right = $right;
     $this->operator = $operator;
 }
Example #3
0
 public function __construct($left, $right, $arg)
 {
     parent::__construct(array());
     $this->left = $left;
     $this->right = $right;
     $this->arg = $arg;
 }
Example #4
0
 public function __construct($operators = array(), $arg = true)
 {
     parent::__construct($operators, $arg);
 }
Example #5
0
 public function __construct($operators = array())
 {
     parent::__construct($operators);
 }