10 lines
171 B
PHP
10 lines
171 B
PHP
<?php
|
|
namespace ProVM\Concept\Database\Query;
|
|
|
|
use ProVM\Concept\Database\Query;
|
|
|
|
interface Truncate extends Query
|
|
{
|
|
public function table(string $table): Truncate;
|
|
}
|