diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-01-19 17:34:38 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-01-19 21:19:02 +0100 |
commit | 4373afeae107852e9feb9fe0c152c608add561eb (patch) | |
tree | b3be28435c8779787445e2dd8043acc4506bd607 /apps | |
parent | 3cb8d85cf475061bcfbe6d901a9b9a0c29258ab4 (diff) | |
download | nextcloud-server-4373afeae107852e9feb9fe0c152c608add561eb.tar.gz nextcloud-server-4373afeae107852e9feb9fe0c152c608add561eb.zip |
Bump phpseclib/phpseclib from 2.0.25 to 2.0.30
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/lib/Lib/Storage/SFTP.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_external/lib/Lib/Storage/SFTP.php b/apps/files_external/lib/Lib/Storage/SFTP.php index ec788c3bad7..5f3d02dfd0a 100644 --- a/apps/files_external/lib/Lib/Storage/SFTP.php +++ b/apps/files_external/lib/Lib/Storage/SFTP.php @@ -141,6 +141,7 @@ class SFTP extends \OC\Files\Storage\Common { $login = false; foreach ($this->auth as $auth) { + /** @psalm-suppress TooManyArguments */ $login = $this->client->login($this->user, $auth); if ($login === true) { break; |