Facturacion
This commit is contained in:
12
app/common/Define/Query/Delete.php
Normal file
12
app/common/Define/Query/Delete.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
namespace Incoviba\Common\Define\Query;
|
||||
|
||||
use Incoviba\Common\Define;
|
||||
|
||||
interface Delete extends Define\Query
|
||||
{
|
||||
public function from(string $table): Delete;
|
||||
public function where(string|array $conditions): Delete;
|
||||
public function order(string|array $sorting): Delete;
|
||||
public function limit(int $limit): Delete;
|
||||
}
|
Reference in New Issue
Block a user