| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 1 | protected function configure() : void |
|
| 20 | { |
||
| 21 | $this |
||
| 22 | 1 | ->setAliases(['status']) |
|
| 23 | 1 | ->setDescription('View the status of a set of migrations.') |
|
| 24 | 1 | ->setHelp(<<<EOT |
|
| 25 | 1 | The <info>%command.name%</info> command outputs the status of a set of migrations: |
|
| 26 | |||
| 27 | <info>%command.full_name%</info> |
||
| 28 | EOT |
||
| 29 | ); |
||
| 30 | |||
| 31 | 1 | parent::configure(); |
|
| 32 | 1 | } |
|
| 33 | |||
| 42 |