diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2020-06-25 22:56:28 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2020-06-25 22:56:28 +0200 |
commit | 8aa99aa8ff2b095729a8599e2a0855207e05e51b (patch) | |
tree | a6a67b9a13851ba5599f51b00b519a902a7bf046 /lib | |
parent | ed4afa55c1ccaef140ac310258ad837bf6af9557 (diff) | |
download | nextcloud-server-8aa99aa8ff2b095729a8599e2a0855207e05e51b.tar.gz nextcloud-server-8aa99aa8ff2b095729a8599e2a0855207e05e51b.zip |
Update presign method to match with interface again.
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Files/ObjectStore/S3Signature.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/Files/ObjectStore/S3Signature.php b/lib/private/Files/ObjectStore/S3Signature.php index f9ea2e22aad..bcd1eef7b2a 100644 --- a/lib/private/Files/ObjectStore/S3Signature.php +++ b/lib/private/Files/ObjectStore/S3Signature.php @@ -73,7 +73,8 @@ class S3Signature implements SignatureInterface { public function presign( RequestInterface $request, CredentialsInterface $credentials, - $expires + $expires, + array $options = [] ) { $query = []; // URL encoding already occurs in the URI template expansion. Undo that |