‪TYPO3CMS  9.5
Statement.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 
22 {
26  protected ‪$statement;
27 
31  protected ‪$boundVariables = [];
32 
39  public function ‪__construct(‪$statement, array ‪$boundVariables = [])
40  {
41  $this->statement = ‪$statement;
42  $this->boundVariables = ‪$boundVariables;
43  }
44 
50  public function ‪getStatement()
51  {
52  return ‪$this->statement;
53  }
54 
60  public function ‪getBoundVariables()
61  {
63  }
64 
71  {
72  }
73 }
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Statement\getStatement
‪string Doctrine DBAL Statement TYPO3 CMS Core Database Query QueryBuilder getStatement()
Definition: Statement.php:48
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Statement
Definition: Statement.php:22
‪TYPO3\CMS\Core\Database\Query\QueryBuilder
Definition: QueryBuilder.php:47
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Statement\$statement
‪string Doctrine DBAL Statement TYPO3 CMS Core Database Query QueryBuilder $statement
Definition: Statement.php:25
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Statement\__construct
‪__construct($statement, array $boundVariables=[])
Definition: Statement.php:37
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom
Definition: AndInterface.php:2
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Statement\collectBoundVariableNames
‪collectBoundVariableNames(&$boundVariables)
Definition: Statement.php:68
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\ConstraintInterface
Definition: ConstraintInterface.php:24
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Statement\$boundVariables
‪array $boundVariables
Definition: Statement.php:29
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Statement\getBoundVariables
‪array getBoundVariables()
Definition: Statement.php:58