for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* @filesource DeleteAbstract.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 DeleteAbstract
abstract class DeleteAbstract extends StatementAbstract implements DeleteInterface{
use WhereTrait;
public function sql():string{
// TODO: Implement sql() method.
}
public function from(){
// TODO: Implement from() method.
public function where($val1, $val2, $operator = '=', $bind = true, $join = 'AND'):DeleteInterface{
return $this->_addWhere($val1, $val2, $operator, $bind, $join);