‪TYPO3CMS  10.4
Join.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
22 class ‪Join implements ‪JoinInterface
23 {
27  protected ‪$left;
28 
32  protected ‪$right;
33 
37  protected ‪$joinType;
38 
42  protected ‪$joinCondition;
43 
53  {
54  $this->left = ‪$left;
55  $this->right = ‪$right;
56  $this->joinType = ‪$joinType;
57  $this->joinCondition = ‪$joinCondition;
58  }
59 
65  public function ‪getLeft()
66  {
67  return ‪$this->left;
68  }
69 
75  public function ‪getRight()
76  {
77  return ‪$this->right;
78  }
79 
85  public function ‪getJoinType()
86  {
87  return ‪$this->joinType;
88  }
89 
95  public function ‪getJoinCondition()
96  {
98  }
99 }
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join
Definition: Join.php:23
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\getJoinType
‪string getJoinType()
Definition: Join.php:81
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\$right
‪SourceInterface $right
Definition: Join.php:30
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\SourceInterface
Definition: SourceInterface.php:22
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\JoinConditionInterface
Definition: JoinConditionInterface.php:22
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\$joinType
‪int $joinType
Definition: Join.php:34
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\__construct
‪__construct(SourceInterface $left, SourceInterface $right, $joinType, JoinConditionInterface $joinCondition)
Definition: Join.php:48
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\$left
‪SourceInterface $left
Definition: Join.php:26
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\$joinCondition
‪JoinConditionInterface $joinCondition
Definition: Join.php:38
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\getRight
‪SourceInterface getRight()
Definition: Join.php:71
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\JoinInterface
Definition: JoinInterface.php:22
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom
Definition: AndInterface.php:16
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\getLeft
‪SourceInterface getLeft()
Definition: Join.php:61
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Join\getJoinCondition
‪JoinConditionInterface getJoinCondition()
Definition: Join.php:91