/plugin/authfacebook/lib/Authentication/ |
H A D | AccessToken.php | 45 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/authgooglesheets/vendor/google/apiclient-services/src/Apigee/ |
H A D | GoogleCloudApigeeV1ConnectorsPlatformConfig.php | 29 public $expiresAt; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1ConnectorsPlatformConfig 48 public function setExpiresAt($expiresAt) argument 50 $this->expiresAt = $expiresAt; 57 return $this->expiresAt;
|
H A D | GoogleCloudApigeeV1DeveloperAppKey.php | 40 public $expiresAt; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1DeveloperAppKey 117 public function setExpiresAt($expiresAt) argument 119 $this->expiresAt = $expiresAt; 126 return $this->expiresAt;
|
H A D | GoogleCloudApigeeV1Credential.php | 38 public $expiresAt; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1Credential 111 public function setExpiresAt($expiresAt) argument 113 $this->expiresAt = $expiresAt; 120 return $this->expiresAt;
|
H A D | GoogleCloudApigeeV1Organization.php | 68 public $expiresAt; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1Organization 265 public function setExpiresAt($expiresAt) argument 267 $this->expiresAt = $expiresAt; 274 return $this->expiresAt;
|
/plugin/authfacebook/lib/Helpers/ |
H A D | FacebookSignedRequestFromInputHelper.php | 104 $expiresAt = $this->signedRequest->get('expires', 0); 106 return new AccessToken($accessToken, $expiresAt);
|
/plugin/authgooglesheets/vendor/google/auth/src/ |
H A D | OAuth2.php | 231 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;
|
H A D | AccessToken.php | 353 $cacheItem->expiresAt(new DateTime('+1 hour'));
|
/plugin/authgooglesheets/vendor/psr/cache/src/ |
H A D | CacheItemInterface.php | 89 public function expiresAt($expiration); function
|
/plugin/authgooglesheets/vendor/psr/cache/ |
H A D | CHANGELOG.md | 12 - For `expiresAt()` and `expiresAfter()` in CacheItemInterface fix docblock to specify null as a va…
|
/plugin/authgooglesheets/vendor/google/auth/src/Cache/ |
H A D | TypedItem.php | 98 public function expiresAt($expiration): static function in Google\\Auth\\Cache\\TypedItem
|
H A D | Item.php | 105 public function expiresAt($expiration) function in Google\\Auth\\Cache\\Item
|
/plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/ |
H A D | Verify.php | 199 $cacheItem->expiresAt(new DateTime('+1 hour'));
|