mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-02-19 16:00:11 +01:00
33 lines
539 B
PHP
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);
|
|
}
|