Set help for DBPlatformConvertCommand

This commit is contained in:
Jan Böhmer
2026-01-08 22:22:47 +01:00
parent 3454fa51de
commit ddbfc87ce1

View File

@@ -59,8 +59,9 @@ class DBPlatformConvertCommand extends Command
public function configure(): void
{
$this->
addArgument('url', InputArgument::REQUIRED, 'The database connection URL of the source database to migrate from');
$this
->setHelp('This command allows you to migrate the database from one database platform to another (e.g. from MySQL to PostgreSQL).')
->addArgument('url', InputArgument::REQUIRED, 'The database connection URL of the source database to migrate from');
}
public function execute(InputInterface $input, OutputInterface $output): int