CollectionValuedPathExpression() 공개 메소드

CollectionValuedPathExpression ::= IdentificationVariable "." CollectionValuedAssociationField
public CollectionValuedPathExpression ( ) : Doctrine\ORM\Query\AST\PathExpression
리턴 Doctrine\ORM\Query\AST\PathExpression
예제 #1
0
 /**
  * @override
  */
 public function parse(\Doctrine\ORM\Query\Parser $parser)
 {
     $lexer = $parser->getLexer();
     $parser->match(Lexer::T_SIZE);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->collectionPathExpression = $parser->CollectionValuedPathExpression();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }