Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 2 |
1 | <?php |
||
44 | protected function execute(InputInterface $input, OutputInterface $output) |
||
45 | { |
||
46 | $handler = $input->getArgument('handler'); |
||
47 | $workload = $input->getArgument('workload'); |
||
48 | |||
49 | $output->writeln(sprintf('Run command "%s" with workload "%s"', $handler, $workload)); |
||
50 | |||
51 | $result = $this->registry->run($handler, $workload); |
||
52 | |||
53 | $output->writeln(sprintf('Result: "%s"', $result)); |
||
54 | } |
||
55 | } |
||
56 |