From 5d5ea9a992ce026fd64b68d48018e45b4c410a45 Mon Sep 17 00:00:00 2001 From: Joseph Bielawski Date: Thu, 19 Sep 2013 12:49:28 +0200 Subject: [PATCH] Fix `use` statements in HttpKernel\Client --- src/Symfony/Component/HttpKernel/Client.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Client.php b/src/Symfony/Component/HttpKernel/Client.php index 4cbb8ecf1b..84ff3b99e4 100644 --- a/src/Symfony/Component/HttpKernel/Client.php +++ b/src/Symfony/Component/HttpKernel/Client.php @@ -11,9 +11,6 @@ namespace Symfony\Component\HttpKernel; -use Symfony\Component\HttpFoundation\File\UploadedFile; -use Symfony\Component\HttpFoundation\Request; -use Symfony\Component\HttpFoundation\Response; use Symfony\Component\BrowserKit\Client as BaseClient; use Symfony\Component\BrowserKit\Request as DomRequest; use Symfony\Component\BrowserKit\Response as DomResponse; @@ -21,6 +18,8 @@ use Symfony\Component\BrowserKit\Cookie as DomCookie; use Symfony\Component\BrowserKit\History; use Symfony\Component\BrowserKit\CookieJar; use Symfony\Component\HttpKernel\TerminableInterface; +use Symfony\Component\HttpFoundation\File\UploadedFile; +use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; /**