From 31b1dff8754ed707b6c7da9a57a99f2e412a00a3 Mon Sep 17 00:00:00 2001 From: Jannik Zschiesche Date: Fri, 20 Jun 2014 12:59:50 +0200 Subject: [PATCH] Small comment update according to PSR-2 See [PSR-2](http://www.php-fig.org/psr/psr-2/) paragraph 5.2 > There MUST be a comment such as `// no break` when fall-through is intentional in a non-empty case body. Related to #11181 --- src/Symfony/Component/HttpFoundation/Request.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Symfony/Component/HttpFoundation/Request.php b/src/Symfony/Component/HttpFoundation/Request.php index 4a663093b8..d7053339bd 100644 --- a/src/Symfony/Component/HttpFoundation/Request.php +++ b/src/Symfony/Component/HttpFoundation/Request.php @@ -350,6 +350,7 @@ class Request if (!isset($server['CONTENT_TYPE'])) { $server['CONTENT_TYPE'] = 'application/x-www-form-urlencoded'; } + // no break case 'PATCH': $request = $parameters; $query = array();