Skip to content

Commit 2bc3779

Browse files
authored
Merge pull request #400 from web-token/3.1.x-merge-up-into-4.0.x_xA3loUDE
Merge release 3.1.1 into 4.0.x
2 parents 3c6452f + c89b0dc commit 2bc3779

24 files changed

+175
-29
lines changed

src/Component/Console/AddKeyIntoKeysetCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\Console\Input\InputInterface;
1616
use Symfony\Component\Console\Output\OutputInterface;
1717

18-
#[AsCommand(name: 'keyset:add:key', description: 'Add a key into a key set.',)]
18+
#[AsCommand(name: 'keyset:add:key', description: 'Add a key into a key set.')]
1919
final class AddKeyIntoKeysetCommand extends ObjectOutputCommand
2020
{
2121
protected function configure(): void

src/Component/Console/EcKeyGeneratorCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use Symfony\Component\Console\Input\InputInterface;
1313
use Symfony\Component\Console\Output\OutputInterface;
1414

15-
#[AsCommand(name: 'key:generate:ec', description: 'Generate an EC key (JWK format)',)]
15+
#[AsCommand(name: 'key:generate:ec', description: 'Generate an EC key (JWK format)')]
1616
final class EcKeyGeneratorCommand extends GeneratorCommand
1717
{
1818
protected function configure(): void

src/Component/Console/EcKeysetGeneratorCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use Symfony\Component\Console\Input\InputInterface;
1414
use Symfony\Component\Console\Output\OutputInterface;
1515

16-
#[AsCommand(name: 'keyset:generate:ec', description: 'Generate an EC key set (JWKSet format)',)]
16+
#[AsCommand(name: 'keyset:generate:ec', description: 'Generate an EC key set (JWKSet format)')]
1717
final class EcKeysetGeneratorCommand extends GeneratorCommand
1818
{
1919
protected function configure(): void

src/Component/Console/GetThumbprintCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\Console\Input\InputOption;
1616
use Symfony\Component\Console\Output\OutputInterface;
1717

18-
#[AsCommand(name: 'key:thumbprint', description: 'Get the thumbprint of a JWK key.',)]
18+
#[AsCommand(name: 'key:thumbprint', description: 'Get the thumbprint of a JWK key.')]
1919
final class GetThumbprintCommand extends ObjectOutputCommand
2020
{
2121
protected function configure(): void

src/Component/Console/JKULoaderCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use Symfony\Component\Console\Input\InputInterface;
1313
use Symfony\Component\Console\Output\OutputInterface;
1414

15-
#[AsCommand(name: 'keyset:load:jku', description: 'Loads a key set from an url.',)]
15+
#[AsCommand(name: 'keyset:load:jku', description: 'Loads a key set from an url.')]
1616
final class JKULoaderCommand extends ObjectOutputCommand
1717
{
1818
public function __construct(

src/Component/Console/KeyAnalyzerCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Symfony\Component\Console\Input\InputInterface;
1818
use Symfony\Component\Console\Output\OutputInterface;
1919

20-
#[AsCommand(name: 'key:analyze', description: 'JWK quality analyzer.',)]
20+
#[AsCommand(name: 'key:analyze', description: 'JWK quality analyzer.')]
2121
final class KeyAnalyzerCommand extends Command
2222
{
2323
public function __construct(

src/Component/Console/KeyFileLoaderCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use Symfony\Component\Console\Input\InputOption;
1414
use Symfony\Component\Console\Output\OutputInterface;
1515

16-
#[AsCommand(name: 'key:load:key', description: 'Loads a key from a key file (JWK format)',)]
16+
#[AsCommand(name: 'key:load:key', description: 'Loads a key from a key file (JWK format)')]
1717
final class KeyFileLoaderCommand extends GeneratorCommand
1818
{
1919
protected function configure(): void

src/Component/Console/KeysetAnalyzerCommand.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,12 @@
1919
use Symfony\Component\Console\Input\InputInterface;
2020
use Symfony\Component\Console\Output\OutputInterface;
2121

22-
#[AsCommand(name: 'keyset:analyze', description: 'JWKSet quality analyzer.',)]
22+
#[AsCommand(name: 'keyset:analyze', description: 'JWKSet quality analyzer.')]
2323
final class KeysetAnalyzerCommand extends Command
2424
{
2525
public function __construct(
2626
private readonly KeysetAnalyzerManager $keysetAnalyzerManager,
27-
private readonly KeyAnalyzerManager $keyAnalyzerManager,
28-
string $name = null
27+
private readonly KeyAnalyzerManager $keyAnalyzerManager
2928
) {
3029
parent::__construct();
3130
}

src/Component/Console/MergeKeysetCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use Symfony\Component\Console\Input\InputInterface;
1414
use Symfony\Component\Console\Output\OutputInterface;
1515

16-
#[AsCommand(name: 'keyset:merge', description: 'Merge several key sets into one.',)]
16+
#[AsCommand(name: 'keyset:merge', description: 'Merge several key sets into one.')]
1717
final class MergeKeysetCommand extends ObjectOutputCommand
1818
{
1919
protected function configure(): void

src/Component/Console/OctKeyGeneratorCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use Symfony\Component\Console\Input\InputInterface;
1212
use Symfony\Component\Console\Output\OutputInterface;
1313

14-
#[AsCommand(name: 'key:generate:oct', description: 'Generate an octet key (JWK format)',)]
14+
#[AsCommand(name: 'key:generate:oct', description: 'Generate an octet key (JWK format)')]
1515
final class OctKeyGeneratorCommand extends GeneratorCommand
1616
{
1717
protected function configure(): void

0 commit comments

Comments
 (0)