12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- namespace Doctrine\ORM\Query\AST;
- class CollectionMemberExpression extends Node
- {
- public $entityExpression;
- public $collectionValuedPathExpression;
- public $not;
- public function __construct($entityExpr, $collValuedPathExpr)
- {
- $this->entityExpression = $entityExpr;
- $this->collectionValuedPathExpression = $collValuedPathExpr;
- }
- public function dispatch($walker)
- {
- return $walker->walkCollectionMemberExpression($this);
- }
- }
|