Total Complexity | 6 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | final class RollbackCommand extends AbstractCommand |
||
17 | { |
||
18 | protected const NAME = 'migrate:rollback'; |
||
19 | protected const DESCRIPTION = 'Rollback one (default) or multiple migrations'; |
||
20 | protected const OPTIONS = [ |
||
21 | ['all', 'a', InputOption::VALUE_NONE, 'Rollback all executed migrations'], |
||
22 | ]; |
||
23 | |||
24 | /** |
||
25 | * Perform command. |
||
26 | */ |
||
27 | public function perform(): void |
||
52 |