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

17 lines
446 B
PHP

<?php
/**
* PathExpression = identifier { "." identifier }
*/
class Doctrine_Query_Production_PathExpression extends Doctrine_Query_Production
{
public function execute(array $params = array())
{
$this->_parser->match(Doctrine_Query_Token::T_IDENTIFIER);
while ($this->_isNextToken('.')) {
$this->_parser->match('.');
$this->_parser->match(Doctrine_Query_Token::T_IDENTIFIER);
}
}
}