Allow for arbitrary arguments

Remove the `--args` option and allow for arbitrary arguments.
This commit is contained in:
Oliver Davies 2024-03-12 21:25:56 +00:00
parent e499d42fa5
commit f94736183e
7 changed files with 21 additions and 13 deletions

View file

@ -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');