コード例 #1
0
 public function __construct($relation = null, $wheres = [])
 {
     parent::__construct($relation, $wheres);
 }
コード例 #2
0
ファイル: InfixNode.php プロジェクト: LartTyler/Link
 public function __construct(string $operator, $left, $right)
 {
     parent::__construct($left, $right);
     $this->operator = $operator;
 }
コード例 #3
0
ファイル: OverNode.php プロジェクト: LartTyler/Link
 public function __construct($left, $right = null)
 {
     parent::__construct($left, $right);
 }
コード例 #4
0
ファイル: TableAliasNode.php プロジェクト: LartTyler/Link
 /**
  * @return mixed
  */
 public function getRelation()
 {
     return parent::getLeft();
 }
コード例 #5
0
ファイル: ToSqlVisitor.php プロジェクト: LartTyler/Link
 protected function infixValue(BinaryNode $node, $collector, $value)
 {
     parent::visit($node->getLeft(), $collector)->append($value);
     return parent::visit($node->getRight(), $collector);
 }