1 | <?php |
||
7 | class DropSchemaCommand extends Command |
||
8 | { |
||
9 | private $schema; |
||
10 | |||
11 | /** |
||
12 | * Sets a schema. |
||
13 | * |
||
14 | * @param Schema $schema The schema instance. |
||
15 | * |
||
16 | * @return DropSchemaCommand |
||
17 | */ |
||
18 | public function setSchema(Schema $schema) |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | public function getSql() |
||
32 | } |
||
33 |