‪TYPO3CMS  10.4
LowerCase.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 
29 {
33  protected ‪$operand;
34 
41  {
42  $this->operand = ‪$operand;
43  }
44 
50  public function ‪getOperand()
51  {
52  return ‪$this->operand;
53  }
54 
60  public function ‪getSelectorName()
61  {
62  return $this->operand->getSelectorName();
63  }
64 
70  public function ‪getPropertyName()
71  {
72  return 'LOWER' . $this->operand->getPropertyName();
73  }
74 }
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\LowerCase\$operand
‪PropertyValueInterface $operand
Definition: LowerCase.php:32
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\LowerCase\getPropertyName
‪string getPropertyName()
Definition: LowerCase.php:69
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\LowerCase
Definition: LowerCase.php:29
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\LowerCase\__construct
‪__construct(PropertyValueInterface $operand)
Definition: LowerCase.php:39
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\PropertyValueInterface
Definition: PropertyValueInterface.php:30
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\LowerCase\getOperand
‪PropertyValueInterface getOperand()
Definition: LowerCase.php:49
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\LowerCase\getSelectorName
‪string getSelectorName()
Definition: LowerCase.php:59
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom
Definition: AndInterface.php:16
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\LowerCaseInterface
Definition: LowerCaseInterface.php:28