Skip to content

Commit

Permalink
Merge branch '2.1'
Browse files Browse the repository at this point in the history
* 2.1:
  fixed CS
  added doc comments
  added doc comments
  [Validator] Updated swedish translation
  Update src/Symfony/Component/Validator/Resources/translations/validators.de.xlf
  [2.1] Exclude tests from zips via gitattributes
  [HttpKernel][Translator] Fixed type-hints
  Updated lithuanian validation translation
  [DomCrawler] Allows using multiselect through Form::setValues().
  [Translation] forced the catalogue to be regenerated when a resource is added (closes symfony/translation#1)
  Unit test for patched method OptionsResolver::validateOptionValues().
  validateOptionValues throw a notice if an allowed value is set and the corresponding option isn't.
  [Form] Hardened code of ViolationMapper against errors
  [HttpFoundation] Fixed #5611 - Request::splitHttpAcceptHeader incorrect result order.
  [Form] Fixed negative index access in PropertyPathBuilder
  Update src/Symfony/Component/Validator/Resources/translations/validators.ro.xlf

Conflicts:
	src/Symfony/Component/DomCrawler/Form.php
	src/Symfony/Component/Process/Process.php
  • Loading branch information
fabpot committed Oct 6, 2012
2 parents 827612b + 676a7bb commit 59447fd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Tests/ export-ignore
phpunit.xml.dist export-ignore
6 changes: 3 additions & 3 deletions Event/GetResponseEvent.php
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 59447fd

Please sign in to comment.