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,18 @@
<?php
namespace Rhymix\Framework\Parsers\DBQuery;
/**
* Query class.
*/
class Query
{
public $name;
public $alias;
public $type;
public $tables = array();
public $columns = array();
public $conditions = array();
public $groupby = null;
public $navigation = null;
}