JoinPathExpression.php 721 Bytes
Newer Older
1 2 3 4 5 6
<?php
/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

7 8
namespace Doctrine\ORM\Query\AST;

9 10 11 12 13
/**
 * Description of JoinCollectionValuedPathExpression
 *
 * @author robo
 */
14
class JoinPathExpression extends Node
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
{
    private $_identificationVariable;
    private $_assocField;

    public function __construct($identificationVariable, $assocField)
    {
        $this->_identificationVariable = $identificationVariable;
        $this->_assocField = $assocField;
    }

    public function getIdentificationVariable()
    {
        return $this->_identificationVariable;
    }
    
    public function getAssociationField()
    {
        return $this->_assocField;
    }
34
}