Home
last modified time | relevance | path

Searched refs:cachedTokens (Results 1 – 2 of 2) sorted by relevance

/plugin/evesso/phpoauthlib/src/OAuth/Common/Storage/
H A DRedis.php30 protected $cachedTokens; variable in OAuth\\Common\\Storage\\Redis
47 $this->cachedTokens = array();
60 if (isset($this->cachedTokens[$service])) {
61 return $this->cachedTokens[$service];
66 return $this->cachedTokens[$service] = unserialize($val);
76 $this->cachedTokens[$service] = $token;
87 if (isset($this->cachedTokens[$service])
88 && $this->cachedTokens[$service] instanceof TokenInterface
102 unset($this->cachedTokens[$service]);
114 $this->cachedTokens = array();
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Storage/
H A DRedis.php30 protected $cachedTokens; variable in OAuth\\Common\\Storage\\Redis
47 $this->cachedTokens = array();
60 if (isset($this->cachedTokens[$service])) {
61 return $this->cachedTokens[$service];
66 return $this->cachedTokens[$service] = unserialize($val);
76 $this->cachedTokens[$service] = $token;
87 if (isset($this->cachedTokens[$service])
88 && $this->cachedTokens[$service] instanceof TokenInterface
102 unset($this->cachedTokens[$service]);
114 $this->cachedTokens
[all...]