Explorar o código

[HttpFoundation] fixed CS in ParameterBag class.

Hugo Hamon %!s(int64=13) %!d(string=hai) anos
pai
achega
64a0abe577
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/Symfony/Component/HttpFoundation/ParameterBag.php

+ 1 - 1
src/Symfony/Component/HttpFoundation/ParameterBag.php

@@ -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) {