Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
13 | 10 | protected function configure() : void |
|
14 | { |
||
15 | 10 | parent::configure(); |
|
16 | |||
17 | $this |
||
18 | 10 | ->setName('migrations:rollup') |
|
19 | 10 | ->setAliases(['rollup']) |
|
20 | 10 | ->setDescription('Rollup migrations by deleting all tracked versions and insert the one version that exists.') |
|
21 | 10 | ->setHelp(<<<EOT |
|
22 | 10 | The <info>%command.name%</info> command rolls up migrations by deleting all tracked versions and |
|
46 |