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\Providers;

use Hostinger\Reach\Admin\Surveys\SatisfactionSurvey;
use Hostinger\Reach\Admin\Surveys\Survey;
use Hostinger\Reach\Container;
use Hostinger\Surveys\SurveyManager;
use Hostinger\WpHelper\Config;
use Hostinger\WpHelper\Constants;
use Hostinger\WpHelper\Requests\Client;
use Hostinger\WpHelper\Utils as Helper;

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

class SurveysProvider implements ProviderInterface {

    public const SURVEY_CLASSES = array(
        SatisfactionSurvey::class,
    );

    public function register( Container $container ): void {
        $container->set(
            Client::class,
            function () use ( $container ) {
                return new Client(
                    $container->get( Config::class )->getConfigValue(
                        'base_rest_uri',
                        Constants::HOSTINGER_REST_URI
                    ),
                    array(
                        Config::TOKEN_HEADER  => $container->get( Helper::class )->getApiToken(),
                     