Kaynağa Gözat

[Form] Fixed reference to \Traversable

Jeremy Mikola 15 yıl önce
ebeveyn
işleme
5b2e92c215

+ 1 - 1
src/Symfony/Components/Form/CollectionField.php

@@ -53,7 +53,7 @@ class CollectionField extends FieldGroup
 
     public function setData($collection)
     {
-        if (!is_array($collection) && !$collection instanceof Traversable) {
+        if (!is_array($collection) && !$collection instanceof \Traversable) {
             throw new UnexpectedTypeException('The data must be an array');
         }