1
0
mirror of synced 2025-01-19 15:01:40 +03:00

20 lines
598 B
PHP
Raw Normal View History

2007-12-10 20:02:41 +00:00
<?php
/**
* UpdateClause = "UPDATE" RangeVariableDeclaration "SET" UpdateItem {"," UpdateItem}
*/
class Doctrine_Query_Production_UpdateClause extends Doctrine_Query_Production
{
public function execute(array $params = array())
{
$this->_parser->match(Doctrine_Query_Token::T_UPDATE);
$this->RangeVariableDeclaration();
$this->_parser->match(Doctrine_Query_Token::T_SET);
$this->RangeVariableDeclaration();
while ($this->_isNextToken(',')) {
$this->_parser->match(',');
$this->RangeVariableDeclaration();
}
}
}