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,12 @@
<?php
namespace Rhymix\Framework\Parsers\DBQuery;
/**
* GroupBy class.
*/
class GroupBy
{
public $columns = array();
public $having = array();
}