| 1 | <?php |
||
| 20 | class Update extends Common\Update 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 a column order to the query. |
||
| 57 | * |
||
| 58 | * @param array $spec The columns and direction to order by. |
||
| 59 | * |
||
| 60 | * @return $this |
||
| 61 | * |
||
| 62 | */ |
||
| 63 | 1 | public function orderBy(array $spec) |
|
| 67 | } |
||
| 68 |