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

24 lines
558 B
PHP

<?php
namespace Driver\SQL;
class Join {
private string $type;
private string $table;
private string $columnA;
private string $columnB;
public function __construct($type, $table, $columnA, $columnB) {
$this->type = $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; }
}