jqh %!s(int64=6) %!d(string=hai) anos
pai
achega
b88fb562f8
Modificáronse 1 ficheiros con 5 adicións e 1 borrados
  1. 5 1
      src/Form/Field.php

+ 5 - 1
src/Form/Field.php

@@ -460,7 +460,11 @@ class Field implements Renderable
             $options = $options->toArray();
         }
 
-        $this->options = array_merge($this->options, $options);
+        if (is_array($this->options)) {
+            $this->options = array_merge($this->options, $options);
+        } else {
+            $this->options = $options;
+        }
 
         return $this;
     }