%PDF- %PDF-
Direktori : /www/varak.net/nextcloud.varak.net/3rdparty/php-opencloud/openstack/src/Common/Auth/ |
Current File : //www/varak.net/nextcloud.varak.net/3rdparty/php-opencloud/openstack/src/Common/Auth/Token.php |
<?php declare(strict_types=1); namespace OpenStack\Common\Auth; interface Token { public function getId(): string; /** * Indicates whether the token has expired or not. * * @return bool TRUE if the token has expired, FALSE if it is still valid */ public function hasExpired(): bool; }