web-base/core/Driver/SQL/Join.class.php

27 lines
535 B
PHP
Raw Normal View History

2020-04-02 00:02:51 +02:00
<?php
namespace Driver\SQL;
class Join {
private $type;
private $table;
private $columnA;
private $columnB;
public function __construct($type, $table, $columnA, $columnB) {
$this->tpye = $type;
$this->table = $table;
$this->columnA = $columnA;
$this->columnB = $columnB;
}
public function getType() { return $this->type; }
public function getTable() { return $this->table; }
public function getColumnA() { return $this->columnA; }
public function getColumnB() { return $this->columnB; }
}
?>