createStream('Hello, World!'); return $this->response->withHeader('Content-Type', 'text/plain; charset=UTF-8')->withBody($body); } /** * Return a json response with a Hello, World! message * * @return ResponseInterface */ public function jsonAction(): ResponseInterface { return $this->jsonResponse(['message' => 'Hello, World!']); } }