예제 #1
0
 /**
  * {@inheritDoc}
  */
 public function execute(InputInterface $input, OutputInterface $output)
 {
     $command = $input->getArgument("threadCommand");
     $type = $input->getArgument("type");
     $maxRunCount = $input->getArgument("maxRunCount");
     $this->runner = $this->runnerFactory->createRunner($type, "", $maxRunCount);
     $this->runner->execute($command);
 }