[HttpKernel] Fix missing use for request and response classes

This commit is contained in:
Andrii Dembitskyi 2019-06-06 17:13:36 +03:00 committed by GitHub
parent 07800fc3e4
commit 0041cd9828
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,9 @@
namespace Symfony\Component\HttpKernel;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
/**
* Client simulates a browser and makes requests to an HttpKernel instance.
*