Create basic structure of XML query

This commit is contained in:
Kijin Sung 2020-06-22 16:53:44 +09:00
parent c97b161e42
commit 20025077f7
11 changed files with 303 additions and 8 deletions

View file

@ -0,0 +1,14 @@
<?php
namespace Rhymix\Framework\Parsers\DBQuery;
/**
* Table class.
*/
class Table
{
public $name;
public $alias;
public $join_type;
public $join_conditions = array();
}