. */ /** * SimpleStateField ::= FieldIdentificationVariable * * @package Doctrine * @subpackage Query * @author Guilherme Blanco * @author Janne Vanhala * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link http://www.phpdoctrine.org * @since 2.0 * @version $Revision$ */ class Doctrine_Query_Parser_SimpleStateField extends Doctrine_Query_ParserRule { protected $_AST = null; public function syntax($paramHolder) { // SimpleStateField ::= FieldIdentificationVariable return $this->parse('FieldIdentificationVariable', $paramHolder); } }