From: Vincent Vanwaelscappel Date: Fri, 3 Jan 2020 15:23:14 +0000 (+0100) Subject: wip #3303 @0.25 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=6dd0c5eba841d061f678a41495eb6fd52778ec28;p=cubist_util.git wip #3303 @0.25 --- 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; }