| 1 | <?php |
||
| 19 | abstract class UpdateAbstract extends StatementAbstract implements UpdateInterface{ |
||
| 20 | use WhereTrait; |
||
| 21 | |||
| 22 | public function sql():string{ |
||
| 25 | |||
| 26 | public function table(){ |
||
| 29 | |||
| 30 | public function set(){ |
||
| 33 | |||
| 34 | public function where($val1, $val2, $operator = '=', $bind = true, $join = 'AND'):UpdateInterface{ |
||
| 37 | |||
| 38 | } |
||
| 39 |