Skip to content

Commit 9980676

Browse files
committed
Merge pull request #895 from bshaffer/issue-894
passes in cache to token verifier by default
2 parents 2a5dd54 + 76fd394 commit 9980676

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Google/Client.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,8 @@ public function revokeToken($token = null)
663663
public function verifyIdToken($idToken = null)
664664
{
665665
$tokenVerifier = new Google_AccessToken_Verify(
666-
$this->getHttpClient()
666+
$this->getHttpClient(),
667+
$this->getCache()
667668
);
668669

669670
if (is_null($idToken)) {

0 commit comments

Comments
 (0)