fix bug in fluent class.

This commit is contained in:
Taylor Otwell 2012-02-01 13:20:44 -06:00
parent ded215d0e3
commit 10ee41f3b3
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ public function __construct($attributes = array())
*/ */
public function get($attribute, $default = null) public function get($attribute, $default = null)
{ {
return array_get($attributes, $attribute, $default); return array_get($this->attributes, $attribute, $default);
} }
/** /**