aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Security/IdentityProof/Manager.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Security/IdentityProof/Manager.php')
-rw-r--r--lib/private/Security/IdentityProof/Manager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Security/IdentityProof/Manager.php b/lib/private/Security/IdentityProof/Manager.php
index 2fa09da3189..6c54f1fa2de 100644
--- a/lib/private/Security/IdentityProof/Manager.php
+++ b/lib/private/Security/IdentityProof/Manager.php
@@ -100,7 +100,7 @@ class Manager {
* @throws \RuntimeException
*/
protected function generateKey(string $id): Key {
- list($publicKey, $privateKey) = $this->generateKeyPair();
+ [$publicKey, $privateKey] = $this->generateKeyPair();
// Write the private and public key to the disk
try {