1 | <?php |
||
10 | class BaseInteractiveCommand extends ContainerAwareCommand |
||
11 | { |
||
12 | private static $commandToFormTypeMap = [ |
||
|
|||
13 | 'DummyCommand' => DummyCommandType::class, |
||
14 | ]; |
||
15 | |||
16 | /** |
||
17 | * @param InputInterface $input |
||
18 | * @param OutputInterface $output |
||
19 | * @return mixed |
||
20 | */ |
||
21 | protected function getCommandUsingInteractiveForm(InputInterface $input, OutputInterface $output) |
||
29 | } |
This check marks private properties in classes that are never used. Those properties can be removed.