Browse Source

Fix bug in fluent class.

Taylor Otwell 12 years ago
parent
commit
e8e7db687c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/fluent.php

+ 1 - 1
laravel/fluent.php

@@ -90,7 +90,7 @@ class Fluent {
 	 */
 	public function __unset($key)
 	{
-		return unset($this->attributes[$key]);
+		unset($this->attributes[$key]);
 	}
 
 }