From 6dd0c5eba841d061f678a41495eb6fd52778ec28 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Fri, 3 Jan 2020 16:23:14 +0100 Subject: [PATCH] wip #3303 @0.25 --- src/Cubist/Util/Json.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cubist/Util/Json.php b/src/Cubist/Util/Json.php index 8507529..c3622d3 100644 --- a/src/Cubist/Util/Json.php +++ b/src/Cubist/Util/Json.php @@ -36,7 +36,7 @@ class Json $encodedValue = self::encode($encodedValue); } try { - return parent::decode($encodedValue, $objectDecodeType); + return json_decode($encodedValue, $objectDecodeType); } catch (\Exception $e) { return null; } -- 2.39.5