Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 87.5% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
13 | class PostgresDeleteQuery extends DeleteQuery implements MapperProvider |
||
14 | { |
||
15 | use Returning; |
||
16 | |||
17 | 1 | public function __construct(Table $table, Driver $driver, TypeProvider $types) |
|
18 | { |
||
19 | 1 | parent::__construct($table, $types); |
|
20 | |||
21 | 1 | $this->return_vars = new ReturnVars($table, $driver, $types); |
|
22 | } |
||
23 | |||
24 | /** |
||
25 | * @inheritdoc |
||
26 | */ |
||
27 | 1 | public function getSQL(): string |
|
34 | } |
||
35 | } |
||
36 |