Home
last modified time | relevance | path

Searched refs:getEndOfLife (Results 1 – 8 of 8) sorted by relevance

/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Token/
H A DAbstractToken.php63 public function getEndOfLife() function in OAuth\\Common\\Token\\AbstractToken
124 return ($this->getEndOfLife() !== TokenInterface::EOL_NEVER_EXPIRES
125 && $this->getEndOfLife() !== TokenInterface::EOL_UNKNOWN
126 && time() > $this->getEndOfLife());
H A DTokenInterface.php28 public function getEndOfLife(); function
/plugin/evesso/phpoauthlib/src/OAuth/OAuth2/Service/
H A DAbstractService.php146 if ($token->getEndOfLife() !== TokenInterface::EOL_NEVER_EXPIRES
147 && $token->getEndOfLife() !== TokenInterface::EOL_UNKNOWN
148 && time() > $token->getEndOfLife()
153 date('m/d/Y', $token->getEndOfLife()),
154 date('h:i:s A', $token->getEndOfLife())
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/
H A DAbstractService.php143 if ($token->getEndOfLife() !== TokenInterface::EOL_NEVER_EXPIRES
144 && $token->getEndOfLife() !== TokenInterface::EOL_UNKNOWN
145 && time() > $token->getEndOfLife()
150 date('m/d/Y', $token->getEndOfLife()),
151 date('h:i:s A', $token->getEndOfLife())
/plugin/oauth/
H A DAdapter.php150 $token->getEndOfLife() < 0 ||
151 $token->getEndOfLife() - time() > 3600
244 $accessToken->getEndOfLife() !== $accessToken::EOL_NEVER_EXPIRES &&
/plugin/evesso/phpoauthlib/src/OAuth/Common/Token/
H A DTokenInterface.php28 public function getEndOfLife(); function
H A DAbstractToken.php63 public function getEndOfLife() function in OAuth\\Common\\Token\\AbstractToken
/plugin/evesso/classes/
H A DAbstractAdapter.php159 …s->oAuth->getStorage()->retrieveAccessToken($this->oAuth->service())->getEndOfLife() - 90 > time()…