‪TYPO3CMS  10.4
LogicalAnd.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 
26 {
30  protected ‪$constraint1;
31 
35  protected ‪$constraint2;
36 
42  {
43  $this->constraint1 = ‪$constraint1;
44  $this->constraint2 = ‪$constraint2;
45  }
46 
52  public function ‪collectBoundVariableNames(&$boundVariables)
53  {
54  $this->constraint1->collectBoundVariableNames($boundVariables);
55  $this->constraint2->collectBoundVariableNames($boundVariables);
56  }
57 
63  public function ‪getConstraint1()
64  {
65  return ‪$this->constraint1;
66  }
67 
73  public function ‪getConstraint2()
74  {
75  return ‪$this->constraint2;
76  }
77 }
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\LogicalAnd\$constraint2
‪ConstraintInterface $constraint2
Definition: LogicalAnd.php:33
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\LogicalAnd\collectBoundVariableNames
‪collectBoundVariableNames(&$boundVariables)
Definition: LogicalAnd.php:50
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\LogicalAnd\getConstraint2
‪ConstraintInterface getConstraint2()
Definition: LogicalAnd.php:71
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\LogicalAnd\__construct
‪__construct(ConstraintInterface $constraint1, ConstraintInterface $constraint2)
Definition: LogicalAnd.php:39
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom
Definition: AndInterface.php:16
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\LogicalAnd\$constraint1
‪ConstraintInterface $constraint1
Definition: LogicalAnd.php:29
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\ConstraintInterface
Definition: ConstraintInterface.php:25
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\LogicalAnd
Definition: LogicalAnd.php:26
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\AndInterface
Definition: AndInterface.php:25
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\LogicalAnd\getConstraint1
‪ConstraintInterface getConstraint1()
Definition: LogicalAnd.php:61