Esempio n. 1
0
 /**
  * @override
  */
 public function parse(\Doctrine\ORM\Query\Parser $parser)
 {
     $lexer = $parser->getLexer();
     $parser->match($lexer->lookahead['value']);
     $parser->match('(');
     $this->_collectionPathExpression = $parser->_CollectionValuedPathExpression();
     $parser->match(')');
 }