Skip to content

Commit a4674d1

Browse files
authored
Merge pull request #3 from designmynight/fix-typo
fix: typo in propery name
2 parents 81af443 + 3afa544 commit a4674d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/VerifyAccessToken.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ protected function getNewAccessToken(): string
6969
if (isset($result['access_token'])) {
7070
$accessToken = $result['access_token'];
7171

72-
Cache::add($this->accesstokenCacheKey, $accessToken, intVal($result['expires_in']) / 60);
72+
Cache::add($this->accessTokenCacheKey, $accessToken, intVal($result['expires_in']) / 60);
7373

7474
return $accessToken;
7575
}

0 commit comments

Comments
 (0)