From 436ca95f65370e903473cecfbcc3b857c526303b Mon Sep 17 00:00:00 2001 From: "Jonathan H. Wage" Date: Thu, 2 Sep 2010 14:22:00 -0500 Subject: [PATCH] Fixing coding standards. --- src/Symfony/Component/Form/FieldGroup.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Symfony/Component/Form/FieldGroup.php b/src/Symfony/Component/Form/FieldGroup.php index 013fe23a83..dfa24b1627 100644 --- a/src/Symfony/Component/Form/FieldGroup.php +++ b/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;