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