diff --git a/src/Illuminate/Support/Fluent.php b/src/Illuminate/Support/Fluent.php index 4622829907ff..34a7c4d3f78c 100755 --- a/src/Illuminate/Support/Fluent.php +++ b/src/Illuminate/Support/Fluent.php @@ -71,10 +71,10 @@ public function set($key, $value) /** * Fill the fluent instance with an array of attributes. * - * @param iterable $attributes + * @param array $attributes * @return $this */ - public function fill($attributes) + public function fill(array $attributes) { foreach ($attributes as $key => $value) { $this->attributes[$key] = $value;