for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* @filesource InsertAbstract.php
* @created 03.06.2017
* @package chillerlan\Database\Query\Dialects
* @author Smiley <[email protected]>
* @copyright 2017 Smiley
* @license MIT
*/
namespace chillerlan\Database\Query;
* Class InsertAbstract
abstract class InsertAbstract extends StatementAbstract implements InsertInterface{
public function into(){
// TODO: Implement into() method.
}
public function values(){
// TODO: Implement values() method.
public function sql():string{
// TODO: Implement sql() method.