From 76fd394786c3db7a6f21df4657a13267cecc7e2e Mon Sep 17 00:00:00 2001 From: Brent Shaffer Date: Tue, 15 Mar 2016 11:22:17 -0700 Subject: [PATCH] passes in cache to token verifier by default --- src/Google/Client.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Google/Client.php b/src/Google/Client.php index 234d526a9..9a38edc82 100644 --- a/src/Google/Client.php +++ b/src/Google/Client.php @@ -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)) {