for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Class Insert
*
* @filesource Insert.php
* @created 03.06.2017
* @package chillerlan\Database\Query\Dialects\Postgres
* @author Smiley <[email protected]>
* @copyright 2017 Smiley
* @license MIT
*/
namespace chillerlan\Database\Query\Dialects\Postgres;
use chillerlan\Database\Query\InsertInterface;
use chillerlan\Database\Query\InsertAbstract;
* @link https://www.postgresql.org/docs/current/static/sql-insert.html
class Insert extends InsertAbstract{
public function into(string $table, string $on_conflict = null):InsertInterface{
$this->table = trim($table);
return $this;
}