123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
-
-
- namespace Doctrine\ORM\Query\AST;
-
-
- class IndexBy extends Node
- {
- public $simpleStateFieldPathExpression = null;
-
- public function __construct($simpleStateFieldPathExpression)
- {
- $this->simpleStateFieldPathExpression = $simpleStateFieldPathExpression;
- }
-
- public function dispatch($sqlWalker)
- {
- return $sqlWalker->walkIndexBy($this);
- }
- }
|