1 | <?php |
||
12 | class DeleteQuery extends Query |
||
13 | { |
||
14 | use Conditions; |
||
15 | |||
16 | /** |
||
17 | * @var Table Table from which to DELETE |
||
18 | */ |
||
19 | protected $table; |
||
20 | |||
21 | /** |
||
22 | * @param Table $table |
||
23 | * @param TypeProvider $types |
||
24 | */ |
||
25 | 1 | public function __construct(Table $table, TypeProvider $types) |
|
31 | |||
32 | 1 | public function getSQL() |
|
42 | } |
||
43 |