diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-11-07 11:21:46 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2022-12-29 12:36:34 +0100 |
commit | 9430899f163d0c07ce31d674bd345a9f672245ea (patch) | |
tree | 0522db19afc154e07845e6c5aabf3c3e86fc9c0c /apps/encryption | |
parent | e6b56a425b4f6bdeebf311c04a79438f2ccabf12 (diff) | |
download | nextcloud-server-9430899f163d0c07ce31d674bd345a9f672245ea.tar.gz nextcloud-server-9430899f163d0c07ce31d674bd345a9f672245ea.zip |
Fix psalm issues related to signature changes from PHP 8.0
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/encryption')
-rw-r--r-- | apps/encryption/lib/Crypto/Crypt.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/encryption/lib/Crypto/Crypt.php b/apps/encryption/lib/Crypto/Crypt.php index 7429c613b52..8bfeb0c7a68 100644 --- a/apps/encryption/lib/Crypto/Crypt.php +++ b/apps/encryption/lib/Crypto/Crypt.php @@ -160,7 +160,7 @@ class Crypt { /** * Generates a new private key * - * @return resource + * @return \OpenSSLAsymmetricKey|false */ public function getOpenSSLPKey() { $config = $this->getOpenSSLConfig(); |