Explorar el Código

Fixing coding standards.

Jonathan H. Wage hace 14 años
padre
commit
436ca95f65
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      src/Symfony/Component/Form/FieldGroup.php

+ 1 - 2
src/Symfony/Component/Form/FieldGroup.php

@@ -57,8 +57,7 @@ class FieldGroup extends Field implements \IteratorAggregate, FieldGroupInterfac
      */
     public function __clone()
     {
-        foreach ($this->fields as $name => $field)
-        {
+        foreach ($this->fields as $name => $field) {
             $field = clone $field;
             $field->setParent($this);
             $this->fields[$name] = $field;