Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class ProjectTestCommand extends Command |
||
10 | { |
||
11 | |||
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 | ; |
||
25 | } |
||
26 | |||
27 | public function execute(InputInterface $input, OutputInterface $output) |
||
30 | } |
||
31 | } |