mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
16 lines
235 B
PHP
16 lines
235 B
PHP
<?php
|
|
|
|
namespace Rhymix\Framework\Parsers\DBQuery;
|
|
|
|
/**
|
|
* GroupBy class.
|
|
*/
|
|
class IndexHint
|
|
{
|
|
public $target_db = array();
|
|
public $hint_type = '';
|
|
public $index_name = '';
|
|
public $table_name = '';
|
|
public $var;
|
|
public $ifvar;
|
|
}
|