[HttpFoundation] fixed CS in ParameterBag class.

This commit is contained in:
Hugo Hamon 2012-04-18 17:10:56 +02:00
parent 29a41ec13b
commit 64a0abe577

View File

@ -104,7 +104,7 @@ class ParameterBag
$value = $this->parameters[$root];
$currentKey = null;
for ($i=$pos,$c=strlen($path); $i<$c; $i++) {
for ($i = $pos, $c = strlen($path); $i < $c; $i++) {
$char = $path[$i];
if ('[' === $char) {