summaryrefslogtreecommitdiffstats
path: root/131.patch
blob: 5b173f6e28c3bb778fa587a2775645dcf848d262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From 6cdf7da6d2ff3affa0bc3fbf5517278abc23b3b8 Mon Sep 17 00:00:00 2001
From: Remi Collet <remi@remirepo.net>
Date: Thu, 8 Aug 2019 09:48:05 +0200
Subject: [PATCH] fix Trying to access array offset on value of type null

---
 src/JsonMapper.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/JsonMapper.php b/src/JsonMapper.php
index 2056ead..2bf1daf 100644
--- a/src/JsonMapper.php
+++ b/src/JsonMapper.php
@@ -592,7 +592,7 @@ protected function getMappedType($type, $jvalue = null)
     {
         if (isset($this->classMap[$type])) {
             $target = $this->classMap[$type];
-        } else if ($type !== '' && $type[0] == '\\'
+        } else if (is_string($type) && $type !== '' && $type[0] == '\\'
             && isset($this->classMap[substr($type, 1)])
         ) {
             $target = $this->classMap[substr($type, 1)];