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