Fix bug in fluent class.

This commit is contained in:
Taylor Otwell 2012-03-23 22:54:09 -05:00
parent 31786c96e9
commit e8e7db687c
1 changed files with 1 additions and 1 deletions

View File

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