Total Complexity | 4 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class UpgradeData implements UpgradeDataInterface |
||
11 | { |
||
12 | /** Config tablename */ |
||
13 | const CONFIG_TABLE = 'pmt_config'; |
||
14 | |||
15 | /** @var Config */ |
||
16 | public $config; |
||
17 | |||
18 | public function __construct(Config $config) |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @param ModuleDataSetupInterface $setup |
||
25 | * @param ModuleContextInterface $context |
||
26 | */ |
||
27 | public function upgrade(ModuleDataSetupInterface $setup, ModuleContextInterface $context) |
||
51 | } |
||
52 | } |