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