Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/3rdparty.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'aws/aws-sdk-php/src/Crypto/MetadataEnvelope.php')
-rw-r--r--aws/aws-sdk-php/src/Crypto/MetadataEnvelope.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/aws/aws-sdk-php/src/Crypto/MetadataEnvelope.php b/aws/aws-sdk-php/src/Crypto/MetadataEnvelope.php
index 043a6433..5a7c6920 100644
--- a/aws/aws-sdk-php/src/Crypto/MetadataEnvelope.php
+++ b/aws/aws-sdk-php/src/Crypto/MetadataEnvelope.php
@@ -38,6 +38,10 @@ class MetadataEnvelope implements ArrayAccess, IteratorAggregate, JsonSerializab
return array_keys(self::$constants);
}
+ /**
+ * @return void
+ */
+ #[\ReturnTypeWillChange]
public function offsetSet($name, $value)
{
$constants = self::getConstantValues();
@@ -49,6 +53,7 @@ class MetadataEnvelope implements ArrayAccess, IteratorAggregate, JsonSerializab
$this->data[$name] = $value;
}
+ #[\ReturnTypeWillChange]
public function jsonSerialize()
{
return $this->data;