From 551fcde0bcbaa961442be25f7a45e3a48e818b82 Mon Sep 17 00:00:00 2001 From: Drak Date: Thu, 4 Oct 2012 16:11:30 +0100 Subject: [PATCH] [HttpKernel][Translator] Fixed type-hints --- Event/GetResponseEvent.php | 6 +++--- Event/KernelEvent.php | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Event/GetResponseEvent.php b/Event/GetResponseEvent.php index eb726c0462..d1ed89b50a 100644 --- a/Event/GetResponseEvent.php +++ b/Event/GetResponseEvent.php @@ -28,14 +28,14 @@ class GetResponseEvent extends KernelEvent { /** * The response object - * @var Symfony\Component\HttpFoundation\Response + * @var Response */ private $response; /** * Returns the response object * - * @return Symfony\Component\HttpFoundation\Response + * @return Response * * @api */ @@ -47,7 +47,7 @@ public function getResponse() /** * Sets a response and stops event propagation * - * @param Symfony\Component\HttpFoundation\Response $response + * @param Response $response * * @api */ diff --git a/Event/KernelEvent.php b/Event/KernelEvent.php index 4dcfd11819..5adf1715ae 100644 --- a/Event/KernelEvent.php +++ b/Event/KernelEvent.php @@ -26,13 +26,13 @@ class KernelEvent extends Event { /** * The kernel in which this event was thrown - * @var Symfony\Component\HttpKernel\HttpKernelInterface + * @var HttpKernelInterface */ private $kernel; /** * The request the kernel is currently processing - * @var Symfony\Component\HttpFoundation\Request + * @var Request */ private $request; @@ -53,7 +53,7 @@ public function __construct(HttpKernelInterface $kernel, Request $request, $requ /** * Returns the kernel in which this event was thrown * - * @return Symfony\Component\HttpKernel\HttpKernelInterface + * @return HttpKernelInterface * * @api */ @@ -65,7 +65,7 @@ public function getKernel() /** * Returns the request the kernel is currently processing * - * @return Symfony\Component\HttpFoundation\Request + * @return Request * * @api */