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
This commit is contained in:
Jannik Zschiesche 2014-06-20 12:59:50 +02:00 committed by Fabien Potencier
parent 7d4f4f276a
commit 31b1dff875
1 changed files with 1 additions and 0 deletions

View File

@ -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();