fix bug in fluent class.

This commit is contained in:
Taylor Otwell
2012-02-01 13:20:44 -06:00
parent ded215d0e3
commit 10ee41f3b3

View File

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