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