Overtrue\Socialite\AttributeTrait::getAttribute PHP Method

getAttribute() public method

Return the extra attribute.
public getAttribute ( string $name, string $default = null ) : mixed
$name string
$default string
return mixed
    public function getAttribute($name, $default = null)
    {
        return isset($this->attributes[$name]) ? $this->attributes[$name] : $default;
    }