From 87554606070695b24e59bcabf99fc8f65a29d466 Mon Sep 17 00:00:00 2001 From: Lukas W Date: Mon, 8 Aug 2016 20:36:21 +0200 Subject: [PATCH] Remove unused JsonResponse dependency in example --- controller.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/controller.rst b/controller.rst index 1b0f6b4d616..711fc8240f9 100644 --- a/controller.rst +++ b/controller.rst @@ -487,7 +487,6 @@ abstraction around the HTTP response - the text-based message filled with headers and content that's sent back to the client:: use Symfony\Component\HttpFoundation\Response; - use Symfony\Component\HttpFoundation\JsonResponse; // create a simple Response with a 200 status code (the default) $response = new Response('Hello '.$name, Response::HTTP_OK);