Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | 2 | protected function configure() : void |
|
21 | { |
||
22 | 2 | parent::configure(); |
|
23 | |||
24 | $this |
||
25 | 2 | ->setAliases(['rollup']) |
|
26 | 2 | ->setDescription('Rollup migrations by deleting all tracked versions and insert the one version that exists.') |
|
27 | 2 | ->setHelp(<<<EOT |
|
28 | 2 | The <info>%command.name%</info> command rolls up migrations by deleting all tracked versions and |
|
59 |