mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-03-05 22:49:48 +01:00
23 lines
306 B
PHP
23 lines
306 B
PHP
<?php
|
|
/**
|
|
*
|
|
* This file is part of Aura for PHP.
|
|
*
|
|
* @license http://opensource.org/licenses/bsd-license.php BSD
|
|
*
|
|
*/
|
|
namespace Aura\SqlQuery\Sqlsrv;
|
|
|
|
use Aura\SqlQuery\Common;
|
|
|
|
/**
|
|
*
|
|
* An object for Sqlsrv DELETE queries.
|
|
*
|
|
* @package Aura.SqlQuery
|
|
*
|
|
*/
|
|
class Delete extends Common\Delete
|
|
{
|
|
}
|