From e6c86855f1f65e1b54af2a1a6e829d10d881406a Mon Sep 17 00:00:00 2001 From: Artem Date: Tue, 29 Mar 2016 11:20:37 +0300 Subject: [PATCH] Forgotten use HttpFoundation\Request In function getTraces used "$traceRequest = Request::create", but class Request does not present in namespace Symfony\Bundle\WebProfilerBundle\Controller --- .../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 2be420ba8b0b0..d77eb279f4a69 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;