OpenXE/vendor/aura/sqlquery/src/Common/UpdateInterface.php
2021-05-21 08:49:41 +02:00

33 lines
539 B
PHP

<?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\SqlQuery\Common;
use Aura\SqlQuery\QueryInterface;
/**
*
* An interface for UPDATE queries.
*
* @package Aura.SqlQuery
*
*/
interface UpdateInterface extends QueryInterface, WhereInterface, ValuesInterface
{
/**
*
* Sets the table to update.
*
* @param string $table The table to update.
*
* @return $this
*
*/
public function table($table);
}