Browse Source

Return the Eloquent model instance in the fill method.

Taylor Otwell 13 years ago
parent
commit
3b5af93064
1 changed files with 3 additions and 1 deletions
  1. 3 1
      system/db/eloquent/model.php

+ 3 - 1
system/db/eloquent/model.php

@@ -100,7 +100,7 @@ abstract class Model {
 	 * Set the attributes of the model using an array.
 	 *
 	 * @param  array  $attributes
-	 * @return void
+	 * @return Model
 	 */
 	public function fill($attributes)
 	{
@@ -108,6 +108,8 @@ abstract class Model {
 		{
 			$this->$key = $value;
 		}
+
+		return $this;
 	}
 
 	/**