コード例 #1
0
 public function __construct($field, $keyword, $boolean = false)
 {
     parent::__construct(array());
     $this->keyword = $keyword;
     $this->field = $field;
     $this->boolean = $boolean;
 }
コード例 #2
0
 public function __construct($left, $right, $operator)
 {
     parent::__construct(array());
     $this->left = $left;
     $this->right = $right;
     $this->operator = $operator;
 }
コード例 #3
0
 public function __construct($left, $right, $arg)
 {
     parent::__construct(array());
     $this->left = $left;
     $this->right = $right;
     $this->arg = $arg;
 }
コード例 #4
0
ファイル: AndOperator.php プロジェクト: guitarpoet/clips-tool
 public function __construct($operators = array(), $arg = true)
 {
     parent::__construct($operators, $arg);
 }
コード例 #5
0
ファイル: NotOperator.php プロジェクト: guitarpoet/clips-tool
 public function __construct($operators = array())
 {
     parent::__construct($operators);
 }