| Total Complexity | 5 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class IndexRemoveIncompatibleTables extends \Aimeos\MW\Setup\Task\Base |
||
| 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 getPreDependencies() |
||
| 23 | { |
||
| 24 | return []; |
||
| 25 | } |
||
| 26 | |||
| 27 | |||
| 28 | /** |
||
| 29 | * Returns the list of task names which depends on this task. |
||
| 30 | * |
||
| 31 | * @return string[] List of task names |
||
| 32 | */ |
||
| 33 | public function getPostDependencies() |
||
| 36 | } |
||
| 37 | |||
| 38 | |||
| 39 | /** |
||
| 40 | * Executes the task |
||
| 41 | */ |
||
| 42 | public function migrate() |
||
| 63 |