Skip to content

Commit e72a9f6

Browse files
committed
Merge branch 'feature/upgrade-guide' of github.com:os2display/display-api-service into feature/upgrade-guide
2 parents 75ae2d9 + a9fe3a6 commit e72a9f6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Command/Utils/ConvertConfigJsonToEnvCommand.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@
1515
#[AsCommand(
1616
name: 'app:utils:convert-config-json-to-env',
1717
description: 'Converts a config json (admin/client) from 2.x to .env variables used in 3.x',
18+
description: 'Converts a config json file (admin/client) from 2.x to .env variables used in 3.x',
1819
)]
1920
class ConvertConfigJsonToEnvCommand extends Command
2021
{
2122
protected function configure(): void
2223
{
2324
$this->addArgument('filepath', InputArgument::REQUIRED, 'Path to the file to convert');
25+
$this->addArgument('filepath', InputArgument::REQUIRED, 'Path to the file or URL to convert');
2426
$this->addOption('type', 't', InputOption::VALUE_REQUIRED, 'Type of the config (admin or client).', null, ['admin', 'client']);
2527
}
2628

0 commit comments

Comments
 (0)