| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | 4 | protected function configure() : void |
|
| 15 | { |
||
| 16 | $this |
||
| 17 | 4 | ->setName('migrations:up-to-date') |
|
| 18 | 4 | ->setDescription('Tells you if your schema is up-to-date.') |
|
| 19 | 4 | ->setHelp(<<<EOT |
|
| 20 | 4 | The <info>%command.name%</info> command tells you if your schema is up-to-date: |
|
| 21 | |||
| 22 | <info>%command.full_name%</info> |
||
| 23 | EOT |
||
| 24 | ); |
||
| 25 | |||
| 26 | 4 | parent::configure(); |
|
| 27 | 4 | } |
|
| 52 |