Total Complexity | 1 |
Total Lines | 46 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class InstallSchema implements InstallSchemaInterface |
||
10 | { |
||
11 | /** Config tablename */ |
||
12 | const CONFIG_TABLE = 'Pagantis_config'; |
||
13 | |||
14 | /** |
||
15 | * @param SchemaSetupInterface $setup |
||
16 | * @param ModuleContextInterface $context |
||
17 | * |
||
18 | * @throws \Zend_Db_Exception |
||
19 | */ |
||
20 | public function install(SchemaSetupInterface $setup, ModuleContextInterface $context) |
||
57 |