Skip to content

Commit

Permalink
Merge branch '2.0' into 2.1
Browse files Browse the repository at this point in the history
* 2.0:
  fixed CS
  added doc comments
  [HttpKernel][Translator] Fixed type-hints
  [Translation] forced the catalogue to be regenerated when a resource is added (closes symfony/translation#1)
  [HttpFoundation] Fixed #5611 - Request::splitHttpAcceptHeader incorrect result order.

Conflicts:
	src/Symfony/Component/Process/Process.php
	tests/Symfony/Tests/Component/HttpFoundation/RequestTest.php
  • Loading branch information
fabpot committed Oct 6, 2012
2 parents 970a66b + 551fcde commit 676a7bb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Event/GetResponseEvent.php
Expand Up @@ -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
*/
Expand All @@ -47,7 +47,7 @@ public function getResponse()
/**
* Sets a response and stops event propagation
*
* @param Symfony\Component\HttpFoundation\Response $response
* @param Response $response
*
* @api
*/
Expand Down
8 changes: 4 additions & 4 deletions Event/KernelEvent.php
Expand Up @@ -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;

Expand All @@ -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
*/
Expand All @@ -65,7 +65,7 @@ public function getKernel()
/**
* Returns the request the kernel is currently processing
*
* @return Symfony\Component\HttpFoundation\Request
* @return Request
*
* @api
*/
Expand Down

0 comments on commit 676a7bb

Please sign in to comment.