mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
14 lines
179 B
PHP
14 lines
179 B
PHP
<?php
|
|
|
|
namespace Rhymix\Framework\Parsers\DBQuery;
|
|
|
|
/**
|
|
* Table class.
|
|
*/
|
|
class Table
|
|
{
|
|
public $name;
|
|
public $alias;
|
|
public $join_type;
|
|
public $join_conditions = array();
|
|
}
|