Overtrue\Socialite\AttributeTrait::getAttribute PHP Метод

getAttribute() публичный Метод

Return the extra attribute.
public getAttribute ( string $name, string $default = null ) : mixed
$name string
$default string
Результат mixed
    public function getAttribute($name, $default = null)
    {
        return isset($this->attributes[$name]) ? $this->attributes[$name] : $default;
    }