set_data($data); return json_encode($data, JSON_PRETTY_PRINT); } /** * Convert the encoded data to a native format * * @param string $data_string * @return object */ public function unserialize($data_string) { return json_decode($data_string); } } // End of types/JSON.php