| 1 | <?php |
||
| 20 | class Delete extends Common\Delete implements Common\ReturningInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * |
||
| 24 | * Adds returning columns to the query. |
||
| 25 | * |
||
| 26 | * Multiple calls to returning() will append to the list of columns, not |
||
| 27 | * overwrite the previous columns. |
||
| 28 | * |
||
| 29 | * @param array $cols The column(s) to add to the query. |
||
| 30 | * |
||
| 31 | * @return $this |
||
| 32 | * |
||
| 33 | */ |
||
| 34 | 1 | public function returning(array $cols) |
|
| 38 | } |
||
| 39 |