-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from Icinga/fix-autoloading
Fix autoloading
- Loading branch information
Showing
5 changed files
with
52 additions
and
58 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
|
This file was deleted.
Oops, something went wrong.