From e61e2ebf3cbfcabe6294781b53e7882aab20bd08 Mon Sep 17 00:00:00 2001 From: Richard Miller Date: Mon, 18 Jul 2016 11:57:42 +0100 Subject: [PATCH] Add missing use statements to data collector example --- cookbook/profiler/data_collector.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cookbook/profiler/data_collector.rst b/cookbook/profiler/data_collector.rst index 845aeebe40d..d931a277959 100644 --- a/cookbook/profiler/data_collector.rst +++ b/cookbook/profiler/data_collector.rst @@ -40,6 +40,8 @@ collects the method and accepted content types from the request:: namespace AppBundle\DataCollector; use Symfony\Component\HttpKernel\DataCollector\DataCollector; + use Symfony\Component\HttpFoundation\Request; + use Symfony\Component\HttpFoundation\Response; class RequestCollector extends DataCollector {