123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
-
-
- namespace Doctrine\ORM\Query\AST;
-
-
- class SimpleArithmeticExpression extends Node
- {
- public $arithmeticTerms = array();
-
- public function __construct(array $arithmeticTerms)
- {
- $this->arithmeticTerms = $arithmeticTerms;
- }
-
- public function dispatch($sqlWalker)
- {
- return $sqlWalker->walkSimpleArithmeticExpression($this);
- }
- }
|