mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
12 lines
151 B
PHP
12 lines
151 B
PHP
<?php
|
|
|
|
namespace Rhymix\Framework\Parsers\DBQuery;
|
|
|
|
/**
|
|
* GroupBy class.
|
|
*/
|
|
class GroupBy
|
|
{
|
|
public $columns = array();
|
|
public $having = array();
|
|
}
|