‪TYPO3CMS  9.5
Join.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
21 class ‪Join implements ‪JoinInterface
22 {
26  protected ‪$left;
27 
31  protected ‪$right;
32 
36  protected ‪$joinType;
37 
41  protected ‪$joinCondition;
42 
52  {
53  $this->left = ‪$left;
54  $this->right = ‪$right;
55  $this->joinType = ‪$joinType;
56  $this->joinCondition = ‪$joinCondition;
57  }
58 
64  public function ‪getLeft()
65  {
66  return ‪$this->left;
67  }
68 
74  public function ‪getRight()
75  {
76  return ‪$this->right;
77  }
78 
84  public function ‪getJoinType()
85  {
86  return ‪$this->joinType;
87  }
88 
94  public function ‪getJoinCondition()
95  {
97  }
98 }
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join
Definition: Join.php:22
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\getJoinType
‪string getJoinType()
Definition: Join.php:80
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\$right
‪SourceInterface $right
Definition: Join.php:29
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\SourceInterface
Definition: SourceInterface.php:21
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\JoinConditionInterface
Definition: JoinConditionInterface.php:21
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\$joinType
‪int $joinType
Definition: Join.php:33
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\__construct
‪__construct(SourceInterface $left, SourceInterface $right, $joinType, JoinConditionInterface $joinCondition)
Definition: Join.php:47
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\$left
‪SourceInterface $left
Definition: Join.php:25
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\$joinCondition
‪JoinConditionInterface $joinCondition
Definition: Join.php:37
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\getRight
‪SourceInterface getRight()
Definition: Join.php:70
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\JoinInterface
Definition: JoinInterface.php:21
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom
Definition: AndInterface.php:2
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\getLeft
‪SourceInterface getLeft()
Definition: Join.php:60
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\getJoinCondition
‪JoinConditionInterface getJoinCondition()
Definition: Join.php:90