Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class CmsAddTypeTestData extends MShopAddTypeData |
||
16 | { |
||
17 | /** |
||
18 | * Returns the list of task names which this task depends on. |
||
19 | * |
||
20 | * @return string[] List of task names |
||
21 | */ |
||
22 | public function after() : array |
||
23 | { |
||
24 | return ['Cms', 'MShopSetLocale', 'MShopAddTypeData']; |
||
25 | } |
||
26 | |||
27 | |||
28 | /** |
||
29 | * Executes the task for adding CMS records to tables. |
||
30 | */ |
||
31 | public function up() |
||
45 | } |
||
46 | } |
||
47 |