Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class Delete extends AbstractQuery |
||
15 | { |
||
16 | /** |
||
17 | * {@inheritdoc} |
||
18 | */ |
||
19 | protected $requestType = 'delete'; |
||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | protected function defineQueriesParts() |
||
25 | { |
||
26 | parent::defineQueriesParts(); |
||
27 | |||
28 | $this->queriesParts['from'] = $this->queriesParts['table']; |
||
29 | |||
30 | $this->querySgbd->disableQueriesParts($this->queriesParts); |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | protected function obtainGenerateOrder(): array |
||
44 | ]; |
||
45 | } |
||
47 |