aboutsummaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorMarcus Eibrink-Lunzenauer <lunzenauer@elan-ev.de>2024-05-31 05:47:18 +0200
committerMarcus Eibrink-Lunzenauer <lunzenauer@elan-ev.de>2024-05-31 05:53:56 +0200
commit200d0cc16c57958486ae6f339edc04b723fe3e8e (patch)
tree2138d0ef98069a2e947d48976ecc64cb1968211d /cli
parentd12dd2e0a0d84159b211b21296c93965ef09ec52 (diff)
Fix typo in 1a70031983001e10469b2d186dcf30de10aec3db.
Fixes #4239.
Diffstat (limited to 'cli')
-rw-r--r--cli/Commands/OAuth2/Keys.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/Commands/OAuth2/Keys.php b/cli/Commands/OAuth2/Keys.php
index 93282ba..9132ad6 100644
--- a/cli/Commands/OAuth2/Keys.php
+++ b/cli/Commands/OAuth2/Keys.php
@@ -46,7 +46,7 @@ class Keys extends Command
$this->storeKeyContentsToFile($encryptionKey, $this->generateEncryptionKey());
- $keys = RSA::createKey(4096);
+ $key = RSA::createKey(4096);
$this->storeKeyContentsToFile($publicKey, (string) $key->getPublicKey());
$this->storeKeyContentsToFile($privateKey, (string) $key);