Home
last modified time | relevance | path

Searched refs:expiresAt (Results 1 – 13 of 13) sorted by path

/plugin/authfacebook/lib/Authentication/
H A DAccessToken.php45 protected $expiresAt; variable in Facebook\\Authentication\\AccessToken
51 * @param int $expiresAt
53 public function __construct($accessToken, $expiresAt = 0) argument
56 if ($expiresAt) {
57 $this->setExpiresAtFromTimeStamp($expiresAt);
80 return $this->expiresAt;
100 if ($this->expiresAt) {
101 return $this->expiresAt->getTimestamp() > time() + (60 * 60 * 2);
158 $this->expiresAt = $dt;
/plugin/authfacebook/lib/Helpers/
H A DFacebookSignedRequestFromInputHelper.php104 $expiresAt = $this->signedRequest->get('expires', 0);
106 return new AccessToken($accessToken, $expiresAt);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1ConnectorsPlatformConfig.php29 public $expiresAt; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1ConnectorsPlatformConfig
48 public function setExpiresAt($expiresAt) argument
50 $this->expiresAt = $expiresAt;
57 return $this->expiresAt;
H A DGoogleCloudApigeeV1Credential.php38 public $expiresAt; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1Credential
111 public function setExpiresAt($expiresAt) argument
113 $this->expiresAt = $expiresAt;
120 return $this->expiresAt;
H A DGoogleCloudApigeeV1DeveloperAppKey.php40 public $expiresAt; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1DeveloperAppKey
117 public function setExpiresAt($expiresAt) argument
119 $this->expiresAt = $expiresAt;
126 return $this->expiresAt;
H A DGoogleCloudApigeeV1Organization.php68 public $expiresAt; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1Organization
265 public function setExpiresAt($expiresAt) argument
267 $this->expiresAt = $expiresAt;
274 return $this->expiresAt;
/plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/
H A DVerify.php199 $cacheItem->expiresAt(new DateTime('+1 hour'));
/plugin/authgooglesheets/vendor/google/auth/src/
H A DAccessToken.php353 $cacheItem->expiresAt(new DateTime('+1 hour'));
H A DOAuth2.php231 private $expiresAt; variable in Google\\Auth\\OAuth2
1240 if (!is_null($this->expiresAt)) {
1241 return $this->expiresAt;
1267 * @param int $expiresAt
1270 public function setExpiresAt($expiresAt) argument
1272 $this->expiresAt = $expiresAt;
/plugin/authgooglesheets/vendor/google/auth/src/Cache/
H A DItem.php105 public function expiresAt($expiration) function in Google\\Auth\\Cache\\Item
H A DTypedItem.php98 public function expiresAt($expiration): static function in Google\\Auth\\Cache\\TypedItem
/plugin/authgooglesheets/vendor/psr/cache/
H A DCHANGELOG.md12 - For `expiresAt()` and `expiresAfter()` in CacheItemInterface fix docblock to specify null as a va…
/plugin/authgooglesheets/vendor/psr/cache/src/
H A DCacheItemInterface.php89 public function expiresAt($expiration); function