예제 #1
0
 public function __construct(string $operator, $left, $right)
 {
     parent::__construct($left, $right);
     $this->operator = $operator;
 }
예제 #2
0
 public function __construct($relation = null, $wheres = [])
 {
     parent::__construct($relation, $wheres);
 }
예제 #3
0
파일: OverNode.php 프로젝트: LartTyler/Link
 public function __construct($left, $right = null)
 {
     parent::__construct($left, $right);
 }