Scalr\Api\Rest\Http\Response::setBody PHP 메소드

setBody() 공개 메소드

Sets response body
public setBody ( string $body ) : Response
$body string The response body
리턴 Response
    public function setBody($body)
    {
        $this->body = $body;
        $this->contentLength = strlen($this->body);
        return $this;
    }