for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* @filesource UpdateAbstract.php
* @created 03.06.2017
* @package chillerlan\Database\Query\Dialects
* @author Smiley <[email protected]>
* @copyright 2017 Smiley
* @license MIT
*/
namespace chillerlan\Database\Query;
use chillerlan\Database\Query\Traits\WhereTrait;
* Class UpdateAbstract
abstract class UpdateAbstract extends StatementAbstract implements UpdateInterface{
use WhereTrait;
public function sql():string{
// TODO: Implement sql() method.
}
public function table(){
// TODO: Implement table() method.
public function set(){
// TODO: Implement set() method.
public function where($val1, $val2, $operator = '=', $bind = true, $join = 'AND'):UpdateInterface{
return $this->_addWhere($val1, $val2, $operator, $bind, $join);