Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
27 | public function uninstall( |
||
28 | SchemaSetupInterface $setup, |
||
29 | ModuleContextInterface $context |
||
30 | ) { |
||
31 | $setup->startSetup(); |
||
32 | |||
33 | $setup->getConnection()->dropTable(Catalogue::CATALOGUE_STORE_TABLE); |
||
34 | $setup->getConnection()->dropTable(Catalogue::CATALOGUE_IMAGE_TABLE); |
||
35 | $setup->getConnection()->dropTable(Catalogue::CATALOGUE_TABLE); |
||
36 | |||
37 | $setup->endSetup(); |
||
38 | } |
||
39 | } |