Method don't work

Hi!
Method getContents() don’t work in Slim\Psr7\Response. But __toString() work how getContents and return my string data. It’s okay?

You may use this instead, because casting to request body to a string will invoke the magic method __toString() method for you.

$body = (string)$request->getBody();