Fix bug in fluent class.

This commit is contained in:
Taylor Otwell
2012-03-23 22:54:09 -05:00
parent 31786c96e9
commit e8e7db687c

View File

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