SocialiteProviders\Manager\OAuth1\Server::scopes PHP Method

scopes() public method

Set the scopes of the requested access.
public scopes ( array $scopes )
$scopes array
    public function scopes(array $scopes)
    {
        $this->scopes = array_unique(array_merge($this->scopes, $scopes));
        return $this;
    }