1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/draft/Doctrine/Query/Production/OrderByItem.php
2007-12-10 20:02:41 +00:00

18 lines
518 B
PHP

<?php
/**
* OrderByItem = PathExpression ["ASC" | "DESC"]
*/
class Doctrine_Query_Production_OrderByItem extends Doctrine_Query_Production
{
public function execute(array $params = array())
{
$this->PathExpression();
if ($this->_isNextToken(Doctrine_Query_Token::T_ASC)) {
$this->_parser->match(Doctrine_Query_Token::T_ASC);
} elseif ($this->_isNextToken(Doctrine_Query_Token::T_DESC)) {
$this->_parser->match(Doctrine_Query_Token::T_DESC);
}
}
}