Skip to content

Commit 2c31117

Browse files
committed
json data single quotes
1 parent 1bc2df7 commit 2c31117

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/Common/Common.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ protected static function safeJson($jsonData,$asArray = false){
5555
$jsonData = json_decode($jsonData,true);
5656
$safeJsonData = [];
5757
foreach ($jsonData as $key => $value){
58-
var_dump($value);
5958
if (self::is_json($value)){
6059
$safeJsonData[$key] = self::safeJson($value,true);
6160
}elseif(is_string($value)){
@@ -69,5 +68,4 @@ protected static function safeJson($jsonData,$asArray = false){
6968
return $asArray ? $safeJsonData : json_encode($safeJsonData);
7069
}
7170

72-
7371
}

0 commit comments

Comments
 (0)