Skip to content

Commit 6ba42e1

Browse files
committed
fix cs
1 parent b13771a commit 6ba42e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Command/GenerateKeyPairCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
use Symfony\Component\Console\Attribute\AsCommand;
88
use Symfony\Component\Console\Command\Command;
9+
use Symfony\Component\Console\Input\InputArgument;
910
use Symfony\Component\Console\Input\InputInterface;
1011
use Symfony\Component\Console\Input\InputOption;
11-
use Symfony\Component\Console\Input\InputArgument;
1212
use Symfony\Component\Console\Output\OutputInterface;
1313
use Symfony\Component\Console\Style\SymfonyStyle;
1414
use Symfony\Component\Filesystem\Filesystem;
@@ -59,7 +59,7 @@ protected function configure(): void
5959
$this->addOption('dry-run', null, InputOption::VALUE_NONE, 'Do not update key files.');
6060
$this->addOption('skip-if-exists', null, InputOption::VALUE_NONE, 'Do not update key files if they already exist.');
6161
$this->addOption('overwrite', null, InputOption::VALUE_NONE, 'Overwrite key files if they already exist.');
62-
$this->addArgument('algorithm', InputArgument::OPTIONAL, sprintf('The algorithm code, possible values : %s', implode(self::ACCEPTED_ALGORITHMS)), 'RS256');
62+
$this->addArgument('algorithm', InputArgument::OPTIONAL, \sprintf('The algorithm code, possible values : %s', implode('', self::ACCEPTED_ALGORITHMS)), 'RS256');
6363
}
6464

6565
protected function execute(InputInterface $input, OutputInterface $output): int

0 commit comments

Comments
 (0)