/home/techb158/public_html/wp-content/plugins/wordpress-seo/src/ai/authorization/domain
Edit: /home/techb158/public_html/wp-content/plugins/wordpress-seo/src/ai/authorization/domain/token.php (1013B)
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();
}
}