projek-xyz/slim-framework

View on GitHub
src/Database/Schema/DeleteSchema.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Projek\Slim\Database\Schema;
 
use Projek\Slim\Database\Schema;
use Slim\PDO\Database;
 
class DeleteSchema extends Schema
{
/**
* @inheritdoc
*/
public function build(Database $database = null)
{
return sprintf('DROP TABLE %s', $this->table);
}
}