Skip to content

Commit

Permalink
Merge pull request #895 from bshaffer/issue-894
Browse files Browse the repository at this point in the history
passes in cache to token verifier by default
  • Loading branch information
bshaffer committed Mar 15, 2016
2 parents 2a5dd54 + 76fd394 commit 9980676
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Google/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,8 @@ public function revokeToken($token = null)
public function verifyIdToken($idToken = null)
{
$tokenVerifier = new Google_AccessToken_Verify(
$this->getHttpClient()
$this->getHttpClient(),
$this->getCache()
);

if (is_null($idToken)) {
Expand Down

0 comments on commit 9980676

Please sign in to comment.