body; if (is_string($body)) { return $body; } if (is_array($body)) { return json_encode($body); } throw new \Exception("Cannot serialize data. Unknown type"); } public function decode($data) { return json_decode($data); } }