OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
knoblyExpressLandingPage
/
vendor
/
aws
/
aws-sdk-php
/
src
/
Token
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/21/2024 10:05:25 AM
rwxr-xr-x
📄
BearerTokenAuthorization.php
1.04 KB
08/21/2024 10:03:45 AM
rw-r--r--
📄
ParsesIniTrait.php
1.35 KB
08/21/2024 10:03:45 AM
rw-r--r--
📄
RefreshableTokenProviderInterface.php
446 bytes
08/21/2024 10:03:45 AM
rw-r--r--
📄
SsoToken.php
3.68 KB
08/21/2024 10:03:45 AM
rw-r--r--
📄
SsoTokenProvider.php
9.56 KB
08/21/2024 10:03:45 AM
rw-r--r--
📄
Token.php
2.3 KB
08/21/2024 10:03:45 AM
rw-r--r--
📄
TokenAuthorization.php
669 bytes
08/21/2024 10:03:45 AM
rw-r--r--
📄
TokenInterface.php
677 bytes
08/21/2024 10:03:46 AM
rw-r--r--
📄
TokenProvider.php
8.63 KB
08/21/2024 10:03:46 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(); }