Commit 10ee41f3 authored by Taylor Otwell's avatar Taylor Otwell

fix bug in fluent class.

parent ded215d0
...@@ -37,7 +37,7 @@ class Fluent { ...@@ -37,7 +37,7 @@ class Fluent {
*/ */
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);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment