| 1 | <?php |
||
| 11 | class SQLQuery extends Query |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | private $sql; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param TypeProvider $types |
||
| 20 | * @param string $sql SQL statement (with placeholders) |
||
| 21 | */ |
||
| 22 | 1 | public function __construct(TypeProvider $types, $sql) |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @inheritdoc |
||
| 31 | */ |
||
| 32 | 1 | public function getSQL() |
|
| 36 | } |
||
| 37 |