diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:30:08 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:30:08 +0000 |
commit | 4ce65d59ca91871cfd126497158200a818720bce (patch) | |
tree | e277def01fc7eba7dbc21c4a4ae5576e8aa2cf1f /patches/ramsey-collection.patch | |
parent | Initial commit. (diff) | |
download | icinga-php-library-upstream/0.13.1.tar.xz icinga-php-library-upstream/0.13.1.zip |
Adding upstream version 0.13.1.upstream/0.13.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'patches/ramsey-collection.patch')
-rw-r--r-- | patches/ramsey-collection.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/patches/ramsey-collection.patch b/patches/ramsey-collection.patch new file mode 100644 index 0000000..b204e59 --- /dev/null +++ b/patches/ramsey-collection.patch @@ -0,0 +1,37 @@ +--- a/vendor/ramsey/collection/src/AbstractArray.php ++++ b/vendor/ramsey/collection/src/AbstractArray.php +@@ -84,6 +84,7 @@ abstract class AbstractArray implements ArrayInterface + * @return T|null the value stored at the offset, or null if the offset + * does not exist. + */ ++ #[\ReturnTypeWillChange] + public function offsetGet($offset) + { + return $this->data[$offset] ?? null; +@@ -132,6 +133,11 @@ abstract class AbstractArray implements ArrayInterface + return serialize($this->data); + } + ++ public function __serialize() ++ { ++ return $this->serialize(); ++ } ++ + /** + * Converts a serialized string representation into an instance object. + * +@@ -149,6 +155,11 @@ abstract class AbstractArray implements ArrayInterface + $this->data = $data; + } + ++ public function __unserialize(array $data) ++ { ++ $this->unserialize($data); ++ } ++ + /** + * Returns the number of items in this array. + * +-- +2.41.0 + |