diff options
| author | Marcus Eibrink-Lunzenauer <lunzenauer@elan-ev.de> | 2024-05-31 05:47:18 +0200 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+github@gmail.com> | 2024-06-04 12:12:43 +0200 |
| commit | c862e0f8d4cce08984302c237ac376a577459e73 (patch) | |
| tree | 72f2a1bf6b7cee57cf9d369bc10ae3e73dd82b61 /cli | |
| parent | 1c91f31a4e20aa1d2078bd76ecae323411040a84 (diff) | |
Fix typo in 1a70031983001e10469b2d186dcf30de10aec3db.
Fixes #4239.
Diffstat (limited to 'cli')
| -rw-r--r-- | cli/Commands/OAuth2/Keys.php | 2 |
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); |
