From 0d31c3e9cb63ec41ccd0ee90e688e52e29233405 Mon Sep 17 00:00:00 2001 From: Cameron Porter Date: Mon, 28 Mar 2016 23:46:00 -0500 Subject: [PATCH] [WebProfilerBundle] Add missing use statement. Request is needed in RouterController::getTraces to be able to create a request. --- .../Bundle/WebProfilerBundle/Controller/RouterController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Symfony/Bundle/WebProfilerBundle/Controller/RouterController.php b/src/Symfony/Bundle/WebProfilerBundle/Controller/RouterController.php index 2be420ba8b..d77eb279f4 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Controller/RouterController.php +++ b/src/Symfony/Bundle/WebProfilerBundle/Controller/RouterController.php @@ -11,6 +11,7 @@ namespace Symfony\Bundle\WebProfilerBundle\Controller; +use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Matcher\UrlMatcherInterface; use Symfony\Component\Routing\Matcher\TraceableUrlMatcher;