11 lines
227 B
PHP
11 lines
227 B
PHP
|
<?php
|
||
|
namespace ProVM\Concept\Database\Query;
|
||
|
|
||
|
use ProVM\Concept\Database\Query;
|
||
|
|
||
|
interface Create extends Query
|
||
|
{
|
||
|
public function table(string $table): Create;
|
||
|
public function columns(array|string $columns): Create;
|
||
|
}
|