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