| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | 14 | protected function configure() |
|
| 23 | { |
||
| 24 | $this |
||
| 25 | // the name of the command (the part after "bin/bluzman") |
||
| 26 | 14 | ->setName('db:rollback') |
|
| 27 | // the short description shown while running "php bin/bluzman list" |
||
| 28 | 14 | ->setDescription('Rollback last migration') |
|
| 29 | // the full command description shown when running the command with |
||
| 30 | // the "--help" option |
||
| 31 | 14 | ->setHelp('This command is shorthand to phinx tool') |
|
| 32 | ; |
||
| 33 | 14 | } |
|
| 34 | } |
||
| 35 |