1 | <?php |
||
20 | class Delete extends Common\Delete implements Common\OrderByInterface, Common\LimitInterface |
||
21 | { |
||
22 | use Common\LimitTrait; |
||
23 | |||
24 | /** |
||
25 | * |
||
26 | * Adds or removes LOW_PRIORITY flag. |
||
27 | * |
||
28 | * @param bool $enable Set or unset flag (default true). |
||
29 | * |
||
30 | * @return $this |
||
31 | * |
||
32 | */ |
||
33 | 1 | public function lowPriority($enable = true) |
|
38 | |||
39 | /** |
||
40 | * |
||
41 | * Adds or removes IGNORE flag. |
||
42 | * |
||
43 | * @param bool $enable Set or unset flag (default true). |
||
44 | * |
||
45 | * @return $this |
||
46 | * |
||
47 | */ |
||
48 | 1 | public function ignore($enable = true) |
|
53 | |||
54 | /** |
||
55 | * |
||
56 | * Adds or removes QUICK flag. |
||
57 | * |
||
58 | * @param bool $enable Set or unset flag (default true). |
||
59 | * |
||
60 | * @return $this |
||
61 | * |
||
62 | */ |
||
63 | 1 | public function quick($enable = true) |
|
68 | |||
69 | /** |
||
70 | * |
||
71 | * Adds a column order to the query. |
||
72 | * |
||
73 | * @param array $spec The columns and direction to order by. |
||
74 | * |
||
75 | * @return $this |
||
76 | * |
||
77 | */ |
||
78 | 1 | public function orderBy(array $spec) |
|
82 | } |
||
83 |