| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 32 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 33 | { |
||
| 34 | /** @var FormHelper $formHelper */ |
||
| 35 | $formHelper = $this->getHelper('form'); |
||
| 36 | |||
| 37 | $commandName = $input->getArgument('commandName'); |
||
| 38 | $command = $formHelper->interactUsingForm(new self::$commandToFormTypeMap[$commandName](), $input, $output); |
||
| 39 | |||
| 40 | $output->writeln(print_r($command, true)); |
||
| 41 | } |
||
| 42 | } |
||
| 43 |
This check marks private properties in classes that are never used. Those properties can be removed.