Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
41 | protected function execute(Input\InputInterface $input, OutputInterface $output) |
||
42 | { |
||
43 | if (null === $this->command) { |
||
44 | $this->command = $this->getApplication()->find($input->getArgument('command_name')); |
||
45 | } |
||
46 | |||
47 | $helper = new DescriptorHelper(); |
||
48 | $helper->describe($output, $this->command, array( |
||
49 | 'format' => 'txt', |
||
50 | 'raw_text' => false, |
||
51 | )); |
||
52 | } |
||
53 | } |
||
54 |