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;
* Class DeleteAbstract
abstract class DeleteAbstract extends StatementAbstract implements DeleteInterface{
public function from(){
// TODO: Implement from() method.
}
public function sql():string{
// TODO: Implement sql() method.
public function where(){
// TODO: Implement where() method.
public function orWhere(){
// TODO: Implement orWhere() method.