‪TYPO3CMS  10.4
Statement.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 
23 {
27  protected ‪$statement;
28 
32  protected ‪$boundVariables = [];
33 
40  public function ‪__construct(‪$statement, array ‪$boundVariables = [])
41  {
42  $this->statement = ‪$statement;
43  $this->boundVariables = ‪$boundVariables;
44  }
45 
51  public function ‪getStatement()
52  {
53  return ‪$this->statement;
54  }
55 
61  public function ‪getBoundVariables()
62  {
64  }
65 
72  {
73  }
74 }
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Statement\getStatement
‪string Doctrine DBAL Statement TYPO3 CMS Core Database Query QueryBuilder getStatement()
Definition: Statement.php:49
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Statement
Definition: Statement.php:23
‪TYPO3\CMS\Core\Database\Query\QueryBuilder
Definition: QueryBuilder.php:52
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Statement\$statement
‪string Doctrine DBAL Statement TYPO3 CMS Core Database Query QueryBuilder $statement
Definition: Statement.php:26
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Statement\__construct
‪__construct($statement, array $boundVariables=[])
Definition: Statement.php:38
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom
Definition: AndInterface.php:16
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Statement\collectBoundVariableNames
‪collectBoundVariableNames(&$boundVariables)
Definition: Statement.php:69
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\ConstraintInterface
Definition: ConstraintInterface.php:25
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Statement\$boundVariables
‪array $boundVariables
Definition: Statement.php:30
‪TYPO3\CMS\Extbase\Persistence\Generic\Qom\Statement\getBoundVariables
‪array getBoundVariables()
Definition: Statement.php:59