summaryrefslogtreecommitdiffstats
path: root/patches
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 11:31:45 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 11:31:45 +0000
commit4e393913a4b1f06509da4341f0f58a41adac9117 (patch)
tree9c27e3eb77d109dff5fd031502311c5616adab04 /patches
parentInitial commit. (diff)
downloadicinga-php-thirdparty-4e393913a4b1f06509da4341f0f58a41adac9117.tar.xz
icinga-php-thirdparty-4e393913a4b1f06509da4341f0f58a41adac9117.zip
Adding upstream version 0.12.1+ds.upstream/0.12.1+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'patches')
-rw-r--r--patches/ramsey-collection.patch37
-rw-r--r--patches/shardj-zf1-future.patch22
2 files changed, 59 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
+
diff --git a/patches/shardj-zf1-future.patch b/patches/shardj-zf1-future.patch
new file mode 100644
index 0000000..0c38514
--- /dev/null
+++ b/patches/shardj-zf1-future.patch
@@ -0,0 +1,22 @@
+--- a/vendor/shardj/zf1-future/library/Zend/Form/Element.php
++++ b/vendor/shardj/zf1-future/library/Zend/Form/Element.php
+@@ -595,7 +595,7 @@ class Zend_Form_Element implements Zend_Validate_Interface
+ * @param string $key
+ * @return void
+ */
+- protected function _filterValue(&$value, $key)
++ protected function _filterValue(&$value, &$key)
+ {
+ foreach ($this->getFilters() as $filter) {
+ $value = $filter->filter($value);
+@@ -612,7 +612,9 @@ class Zend_Form_Element implements Zend_Validate_Interface
+ $valueFiltered = $this->_value;
+
+ if ($this->isArray() && is_array($valueFiltered)) {
+- array_walk_recursive($valueFiltered, [$this, '_filterValue']);
++ array_walk_recursive($valueFiltered, function (&$val, $key) {
++ $this->_filterValue($val, $key);
++ });
+ } else {
+ $this->_filterValue($valueFiltered, $valueFiltered);
+ }