Пример #1
0
 public function __construct($clientId, $clientSecret, $refreshToken, $scopes = [])
 {
     $this->refreshToken = $refreshToken;
     parent::__construct($clientId, $clientSecret, $scopes);
 }
Пример #2
0
 public function __construct($clientId, $clientSecret, $username, $password, $scopes = [])
 {
     $this->username = $username;
     $this->password = $password;
     parent::__construct($clientId, $clientSecret, $scopes);
 }