浏览代码

Fixing coding standards.

Jonathan H. Wage 14 年之前
父节点
当前提交
436ca95f65
共有 1 个文件被更改,包括 1 次插入2 次删除
  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;