Update namespaces
This commit is contained in:
11
src/Define/Query/Update.php
Normal file
11
src/Define/Query/Update.php
Normal file
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
namespace Database\Define\Query;
|
||||
|
||||
use Database\Define\Query;
|
||||
|
||||
interface Update extends Query
|
||||
{
|
||||
public function table(string $table): self;
|
||||
public function set(array|string $value_pairs): self;
|
||||
public function where(array|string $conditions): self;
|
||||
}
|
Reference in New Issue
Block a user