json = $json; } public function getResponse(Request $request): Response { if ($this->json) { $entity = new JsonEntity(['message' => 'Hello, World!']); } else { $entity = new PlainTextEntity('Hello, World!'); } return new SimpleOKResponse($entity); } }