<?php/* * To change this template, choose Tools | Templates * and open the template in the editor. *//** * ArithmeticTerm ::= ArithmeticFactor {("*" | "/") ArithmeticFactor}* * * @author robo */classDoctrine_ORM_Query_AST_ArithmeticTermextendsDoctrine_ORM_Query_AST{private$_factors;publicfunction__construct(array$arithmeticFactors){$this->_factors=$arithmeticFactors;}publicfunctiongetArithmeticFactors(){return$this->_factors;}}