TYPO3 CMS  TYPO3_6-2
Join.php
Go to the documentation of this file.
1 <?php
3 
19 class Join implements JoinInterface {
20 
24  protected $left;
25 
29  protected $right;
30 
34  protected $joinType;
35 
39  protected $joinCondition;
40 
50  $this->left = $left;
51  $this->right = $right;
52  $this->joinType = $joinType;
53  $this->joinCondition = $joinCondition;
54  }
55 
61  public function getLeft() {
62  return $this->left;
63  }
64 
70  public function getRight() {
71  return $this->right;
72  }
73 
79  public function getJoinType() {
80  return $this->joinType;
81  }
82 
88  public function getJoinCondition() {
89  return $this->joinCondition;
90  }
91 }
__construct(SourceInterface $left, SourceInterface $right, $joinType, JoinConditionInterface $joinCondition)
Definition: Join.php:49