diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-06-30 20:36:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-30 20:36:30 +0200 |
commit | 873be16c8d0bd7c37156f7cc8e6ead1f371f50e2 (patch) | |
tree | 8c253ac6cd9a9730237db17680f149695a65e1a0 /lib | |
parent | c709dda597bc07c8b8f61412e9622614e68c3656 (diff) | |
parent | 8aa99aa8ff2b095729a8599e2a0855207e05e51b (diff) | |
download | nextcloud-server-873be16c8d0bd7c37156f7cc8e6ead1f371f50e2.tar.gz nextcloud-server-873be16c8d0bd7c37156f7cc8e6ead1f371f50e2.zip |
Merge pull request #21588 from nextcloud/bug/21214/method-signature
Update presign method to match with interface again.
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 |