Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | protected function configure() |
||
13 | { |
||
14 | $this |
||
15 | // the name of the command (the part after "bin/console") |
||
16 | ->setName('hello:project') |
||
17 | |||
18 | // the short description shown while running "php bin/console list" |
||
19 | ->setDescription('Echo hello project') |
||
20 | |||
21 | // the full command description shown when running the command with |
||
22 | // the "--help" option |
||
23 | ->setHelp('This command allows you to write hello project to screen') |
||
24 | ; |
||
31 | } |