Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class TablesCreateCms extends \Aimeos\MW\Setup\Task\TablesCreateMShop |
||
16 | { |
||
17 | /** |
||
18 | * Returns the list of task names which depends on this task. |
||
19 | * |
||
20 | * @return string[] List of task names |
||
21 | */ |
||
22 | public function getPostDependencies() : array |
||
23 | { |
||
24 | return ['MShopAddLocaleLangCurData']; |
||
25 | } |
||
26 | |||
27 | |||
28 | /** |
||
29 | * Creates the CMS tables |
||
30 | */ |
||
31 | public function migrate() |
||
37 | } |
||
38 | } |
||
39 |