14 lines
227 B
PHP
14 lines
227 B
PHP
<?php
|
|
namespace Database\Implement\Query\MySQL;
|
|
|
|
use Database\Ideal\Query;
|
|
|
|
class Drop extends Query\Drop
|
|
{
|
|
public function getTable(): string
|
|
{
|
|
$table = parent::getTable();
|
|
return "`{$table}`";
|
|
}
|
|
}
|