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