OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
Xpress_backup
/
vendor
/
aws
/
aws-sdk-php
/
src
/
Token
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:19 AM
rwxr-xr-x
📄
BearerTokenAuthorization.php
1.04 KB
05/19/2025 10:07:18 AM
rw-r--r--
📄
ParsesIniTrait.php
1.35 KB
05/19/2025 10:07:18 AM
rw-r--r--
📄
RefreshableTokenProviderInterface.php
446 bytes
05/19/2025 10:07:18 AM
rw-r--r--
📄
SsoToken.php
3.68 KB
05/19/2025 10:07:18 AM
rw-r--r--
📄
SsoTokenProvider.php
9.56 KB
05/19/2025 10:07:18 AM
rw-r--r--
📄
Token.php
2.3 KB
05/19/2025 10:07:18 AM
rw-r--r--
📄
TokenAuthorization.php
669 bytes
05/19/2025 10:07:18 AM
rw-r--r--
📄
TokenInterface.php
677 bytes
05/19/2025 10:07:18 AM
rw-r--r--
📄
TokenProvider.php
8.63 KB
05/19/2025 10:07:18 AM
rw-r--r--
Editing: TokenInterface.php
Close
<?php namespace Aws\Token; /** * Provides access to an AWS token used for accessing AWS services */ interface TokenInterface { /** * Returns the token this token object. * * @return string */ public function getToken(); /** * Get the UNIX timestamp in which the token will expire * * @return int|null */ public function getExpiration(); /** * Check if the token are expired * * @return bool */ public function isExpired(); /** * Converts the token to an associative array. * * @return array */ public function toArray(); }