fix bug in fluent class.
This commit is contained in:
parent
ded215d0e3
commit
10ee41f3b3
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue