mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-02-11 04:00:10 +01:00
33 lines
529 B
PHP
33 lines
529 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 DELETE queries.
|
|
*
|
|
* @package Aura.SqlQuery
|
|
*
|
|
*/
|
|
interface DeleteInterface extends QueryInterface, WhereInterface
|
|
{
|
|
/**
|
|
*
|
|
* Sets the table to delete from.
|
|
*
|
|
* @param string $from The table to delete from.
|
|
*
|
|
* @return $this
|
|
*
|
|
*/
|
|
public function from($from);
|
|
}
|