Total Complexity | 6 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | final class MigrateCommand extends AbstractCommand |
||
17 | { |
||
18 | protected const NAME = 'migrate'; |
||
19 | protected const DESCRIPTION = 'Perform one or all outstanding migrations'; |
||
20 | protected const OPTIONS = [ |
||
21 | ['one', 'o', InputOption::VALUE_NONE, 'Execute only one (first) migration'], |
||
22 | ]; |
||
23 | |||
24 | /** |
||
25 | * Execute one or multiple migrations. |
||
26 | */ |
||
27 | public function perform(): void |
||
53 |