Allow for arbitrary arguments
Remove the `--args` option and allow for arbitrary arguments.
This commit is contained in:
parent
e499d42fa5
commit
f94736183e
7 changed files with 21 additions and 13 deletions
|
@ -21,7 +21,7 @@ final class InstallCommand extends AbstractCommand
|
|||
{
|
||||
public function execute(InputInterface $input, OutputInterface $output): int
|
||||
{
|
||||
$args = $input->getOption('args');
|
||||
$args = $input->getArgument('*');
|
||||
$language = $input->getOption('language');
|
||||
$workingDir = $input->getOption('working-dir');
|
||||
|
||||
|
|
Reference in a new issue