mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
18 lines
277 B
PHP
18 lines
277 B
PHP
<?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;
|
|
}
|