Fix default StorageLocation ID on BackupCommand (#5350)

Co-authored-by: Buster "Silver Eagle" Neece <buster@busterneece.com>
This commit is contained in:
Vaalyn 2022-05-06 17:20:33 +02:00 committed by GitHub
parent c4deb4080e
commit 67054d12a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class BackupCommand extends CommandAbstract
protected function configure(): void
{
$this->addArgument('path', InputArgument::REQUIRED)
->addOption('storage-location-id', null, InputOption::VALUE_OPTIONAL, '', '')
->addOption('storage-location-id', null, InputOption::VALUE_OPTIONAL)
->addOption('exclude-media', null, InputOption::VALUE_NONE);
}