From e8e7db687c6e93cd53b8b12ce761e39e367b8ab1 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 23 Mar 2012 22:54:09 -0500 Subject: [PATCH] Fix bug in fluent class. --- laravel/fluent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/fluent.php b/laravel/fluent.php index 58c70207..2fed023f 100644 --- a/laravel/fluent.php +++ b/laravel/fluent.php @@ -90,7 +90,7 @@ public function __isset($key) */ public function __unset($key) { - return unset($this->attributes[$key]); + unset($this->attributes[$key]); } } \ No newline at end of file