Jackalope\Query\QOM\Join::__construct PHP Method

__construct() public method

Create a new join instance
public __construct ( PHPCR\Query\QOM\SourceInterface $left, PHPCR\Query\QOM\SourceInterface $right, string $joinType, PHPCR\Query\QOM\JoinConditionInterface $joinCondition )
$left PHPCR\Query\QOM\SourceInterface
$right PHPCR\Query\QOM\SourceInterface
$joinType string
$joinCondition PHPCR\Query\QOM\JoinConditionInterface
    public function __construct(SourceInterface $left, SourceInterface $right, $joinType, JoinConditionInterface $joinCondition)
    {
        $this->left = $left;
        $this->right = $right;
        $this->joinType = $joinType;
        $this->joinCondition = $joinCondition;
    }