diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-06-23 15:30:43 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-06-23 15:30:43 +0200 |
commit | 6d5cfe0c66f7010d552f0aa234a13c2e91a933bd (patch) | |
tree | a3703e699e9d81ed92019a730ae4f436e3ffb0a2 /lib/private/Files/ObjectStore | |
parent | 770881d5d66de36bb04fab8a2b9fdcae658150fa (diff) | |
download | nextcloud-server-6d5cfe0c66f7010d552f0aa234a13c2e91a933bd.tar.gz nextcloud-server-6d5cfe0c66f7010d552f0aa234a13c2e91a933bd.zip |
Move DateTime::RFC2822 to DateTimeInterface::2822
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/Files/ObjectStore')
-rw-r--r-- | lib/private/Files/ObjectStore/S3Signature.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/ObjectStore/S3Signature.php b/lib/private/Files/ObjectStore/S3Signature.php index ec2e6bbe3ac..1e5ef697835 100644 --- a/lib/private/Files/ObjectStore/S3Signature.php +++ b/lib/private/Files/ObjectStore/S3Signature.php @@ -129,7 +129,7 @@ class S3Signature implements SignatureInterface { ) { $modify = [ 'remove_headers' => ['X-Amz-Date'], - 'set_headers' => ['Date' => gmdate(\DateTime::RFC2822)] + 'set_headers' => ['Date' => gmdate(\DateTimeInterface::RFC2822)] ]; // Add the security token header if one is being used by the credentials |