Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php

namespace Hostinger\Reach\Api\Handlers;

use Hostinger\WpHelper\Requests\Client;
use Hostinger\Reach\Functions;
use WP_REST_Response;

if ( ! defined( 'ABSPATH' ) ) {
    die;
}

class HostingApiHandler extends ApiHandler {

    private Client $client;

    public function __construct( Functions $functions, Client $client ) {
        parent::__construct( $functions );
        $this->client = $client;
    }

    public function get_domain_details_handler(): WP_REST_Response {
        // For non Hostinger Users prevent request and just return an empty array.
        if ( ! $this->get_functions()->is_hostinger_user() ) {
            return $this->handle_response(
                array(
                    'response' => array(
                        'code' => 200,
                    ),
                    'body'     => wp_json_encode( array() ),
                )
            );
        }

        $siteurl       = get_option( 'siteurl' );
        $domain        = apply_filters( 'hostinger_reach_domain', parse_url( $siteurl, PHP_URL_HOST ) );
        $transient_key = 'hostinger_reach_domain_details_' . md5( $domain );
        $disable_cache = apply_filters( 'hostinger_reach_disable_rest_cache', false );

        if ( ! $disable_cache ) {
      