*(……&*6干sfa绅士的风度sfsdfd不打发打发死啊好办法
/home/comfrqjt/www/wp-content/plugins/hostinger/includes/Admin/Jobs/JobInitializer.php
<?php

namespace Hostinger\Admin\Jobs;

use Hostinger\Admin\PluginSettings;
use Hostinger\Admin\Proxy;
use Hostinger\LlmsTxtGenerator\LlmsTxtFileHelper;
use Hostinger\LlmsTxtGenerator\LlmsTxtParser;
use Hostinger\Mcp\EventHandlerFactory;

defined( 'ABSPATH' ) || exit;

class JobInitializer {

    public function __construct( Proxy $proxy ) {
        $jobs   = array();
        $jobs[] = new NotifyMcpJob( new ActionScheduler(), new EventHandlerFactory( $proxy ) );
        $jobs[] = new LlmsTxtInjectContentJob( new ActionScheduler(), new LlmsTxtParser(), new LlmsTxtFileHelper(), new PluginSettings() );

        foreach ( $jobs as $job ) {
            $job->init();
        }
    }
}