1
0
mirror of synced 2024-12-15 23:56:02 +03:00
doctrine2/draft/Doctrine/Query/Production/OrderByItem.php

18 lines
518 B
PHP
Raw Normal View History

2007-12-10 23:02:41 +03:00
<?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);
}
}
}