summaryrefslogtreecommitdiffstats
path: root/101.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-01-27 12:09:42 +0100
committerRemi Collet <remi@remirepo.net>2020-01-27 12:09:42 +0100
commitc6fa194311395047a23e1b897a679fddeb651c93 (patch)
tree3f69170987b209329cac5390141b0dd35fa8c2b0 /101.patch
parent2b1a0b67d413b58e1c9de27dc4aba488e5273fd2 (diff)
update to 0.12.28
drop patch merged upstream
Diffstat (limited to '101.patch')
-rw-r--r--101.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/101.patch b/101.patch
deleted file mode 100644
index c06d2b2..0000000
--- a/101.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 2d8ed28626848ce0b8cb0bdc71f39d557a87cadc Mon Sep 17 00:00:00 2001
-From: Remi Collet <remi@remirepo.net>
-Date: Mon, 27 Jan 2020 08:24:35 +0100
-Subject: [PATCH] fix Trying to access array offset on value of type null (7.4)
-
----
- src/Wrapper.php | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/Wrapper.php b/src/Wrapper.php
-index 0a0a24a..19090cf 100644
---- a/src/Wrapper.php
-+++ b/src/Wrapper.php
-@@ -105,7 +105,7 @@ public function getProperties()
- */
- public function getProperty($name)
- {
-- return $this->schema->properties[$name];
-+ return isset($this->schema->properties[$name]) ? $this->schema->properties[$name] : null;
- }
-
- /**
-@@ -216,4 +216,4 @@ public function jsonSerialize()
- return $this->schema->jsonSerialize();
- }
-
--}
-\ No newline at end of file
-+}