芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/optimyar/wp-content/plugins/wordpress-seo/src/ai-authorization/domain/token.php
value = $value; $this->expiration = $expiration; } /** * Get the token value. * * @return string The token value. */ public function get_value(): string { return $this->value; } /** * Whether the token is expired. * * @return bool True if the token is expired, false otherwise. */ public function is_expired(): bool { return $this->expiration < \time(); } }