示例#1
0
 /**
  * @param InputInterface $input
  * @param OutputInterface $output
  * @return int
  * @throws \Symfony\Component\Console\Exception\ExceptionInterface
  */
 protected function outputHelp(InputInterface $input, OutputInterface $output)
 {
     $help = new HelpCommand();
     $help->setCommand($this);
     return $help->run($input, $output);
 }