Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function __invoke(InputInterface $input, OutputInterface $output): void |
||
26 | { |
||
27 | $options = $input->getArgument('options'); |
||
28 | |||
29 | if (!$this->hasUrlOption($options)) { |
||
|
|||
30 | $options[] = sprintf('--url=http://%s.localtest.me/', basename(getcwd())); |
||
31 | } |
||
32 | |||
33 | $this->runProcess(sprintf(static::COMMAND, implode(' ', $options))); |
||
34 | } |
||
52 |