assertNoPreviousOutput(); $this->emitHeaders($response); $this->emitStatusLine($response); $this->emitBody($response); } /** * Emit the message body. * * @param ResponseInterface $response */ private function emitBody(ResponseInterface $response) { echo $response->getBody(); } }