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