We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8f4f91 commit db37c42Copy full SHA for db37c42
src/Google/Auth/OAuth2.php
@@ -192,7 +192,7 @@ public function getAccessToken()
192
public function getRefreshToken()
193
{
194
if (array_key_exists('refresh_token', $this->token)) {
195
- return this->token['refresh_token'];
+ return $this->token['refresh_token'];
196
} else {
197
return null;
198
}
src/Google/Client.php
@@ -254,7 +254,7 @@ public function getAccessToken()
254
*/
255
256
257
- return = $this->getAuth()->getRefreshToken();
+ return $this->getAuth()->getRefreshToken();
258
259
260
/**
0 commit comments