We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bc2df7 commit 2c31117Copy full SHA for 2c31117
src/Common/Common.php
@@ -55,7 +55,6 @@ protected static function safeJson($jsonData,$asArray = false){
55
$jsonData = json_decode($jsonData,true);
56
$safeJsonData = [];
57
foreach ($jsonData as $key => $value){
58
- var_dump($value);
59
if (self::is_json($value)){
60
$safeJsonData[$key] = self::safeJson($value,true);
61
}elseif(is_string($value)){
@@ -69,5 +68,4 @@ protected static function safeJson($jsonData,$asArray = false){
69
68
return $asArray ? $safeJsonData : json_encode($safeJsonData);
70
}
71
72
-
73
0 commit comments