OpenXE/vendor/aura/sqlquery/src/Common/DeleteInterface.php

33 lines
529 B
PHP
Raw Normal View History

2021-05-21 08:49:41 +02:00
<?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);
}