| Total Complexity | 2 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class RunProcessCommand extends AbstractCommand |
||
| 17 | { |
||
| 18 | protected function configure() |
||
| 19 | { |
||
| 20 | $this |
||
| 21 | ->setName('process:run') |
||
| 22 | ->addOption('process', 'p', InputOption::VALUE_REQUIRED, 'Process name') |
||
| 23 | ->addOption('output', 'o', InputOption::VALUE_REQUIRED, 'Output file') |
||
| 24 | ->addOption('input', 'i', InputOption::VALUE_REQUIRED, 'Input file'); |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param \Symfony\Component\Console\Input\InputInterface $input |
||
| 29 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
| 30 | * |
||
| 31 | * @return int|void|null |
||
| 32 | */ |
||
| 33 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 45 | } |
||
| 46 | } |