From cfe08e578594827ec41d8eabf965a304947e5947 Mon Sep 17 00:00:00 2001 From: Roy Van Ginneken Date: Tue, 26 Nov 2024 15:12:33 +0100 Subject: [PATCH] Fix typo in command registration for GenerateKeyPairCommand The GenerateKeyPairCommand doesn't show up as a command in the console, because of this small typo. --- src/Resources/config/services.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Resources/config/services.php b/src/Resources/config/services.php index 582d97c..19919f0 100644 --- a/src/Resources/config/services.php +++ b/src/Resources/config/services.php @@ -265,7 +265,7 @@ abstract_arg('Public key'), abstract_arg('Private key passphrase'), ]) - ->tag('consome.command', ['command' => 'league:oauth2-server:generate-keypair']) + ->tag('console.command', ['command' => 'league:oauth2-server:generate-keypair']) ->alias(GenerateKeyPairCommand::class, 'league.oauth2_server.command.generate_keypair') // Utility services