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

24 lines
767 B
PHP

<?php
/**
* Atom = string | numeric | input_parameter
*/
class Doctrine_Query_Production_Atom extends Doctrine_Query_Production
{
public function execute(array $params = array())
{
switch ($this->_parser->lookahead['type']) {
case Doctrine_Query_Token::T_STRING:
$this->_parser->match(Doctrine_Query_Token::T_STRING);
break;
case Doctrine_Query_Token::T_NUMERIC:
$this->_parser->match(Doctrine_Query_Token::T_NUMERIC);
break;
case Doctrine_Query_Token::T_INPUT_PARAMETER:
$this->_parser->match(Doctrine_Query_Token::T_INPUT_PARAMETER);
break;
default:
$this->_parser->syntaxError();
}
}
}