mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
37 lines
694 B
PHP
37 lines
694 B
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
|
|
/**
|
|
* StarExpression
|
|
* Represents the * in 'select * from ...' statements
|
|
*
|
|
* @author Corina
|
|
* @package /classes/db/queryparts/expression
|
|
* @version 0.1
|
|
*/
|
|
class StarExpression extends SelectExpression
|
|
{
|
|
|
|
/**
|
|
* constructor, set the column to asterisk
|
|
* @return void
|
|
*/
|
|
function __construct()
|
|
{
|
|
parent::__construct("*");
|
|
}
|
|
|
|
function getArgument()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
function getArguments()
|
|
{
|
|
// StarExpression has no arguments
|
|
return array();
|
|
}
|
|
|
|
}
|
|
/* End of file StarExpression.class.php */
|
|
/* Location: ./classes/db/queryparts/expression/StarExpression.class.php */
|