HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/zaklada/wp-content/plugins/wpml-translation-management/classes/container/class-config.php
<?php

namespace WPML\TM\Container;

use WPML\TM\ATE\ClonedSites\ApiCommunication;
use WPML\TM\ATE\ClonedSites\Lock;
use WPML\TM\ATE\Log\Storage;
use WPML\TM\Notices\AteLockNotice;

class Config {

	static public function getDelegated() {
		return [
			'\WPML_Translation_Job_Factory'    => 'wpml_tm_load_job_factory',
			\WPML_TM_ATE_Job_Repository::class => 'wpml_tm_get_ate_jobs_repository',
		];
	}

	static public function getSharedClasses() {
		return [
			'\WPML_TM_AMS_API',
			'\WPML_TM_ATE_API',
			'\WPML_TM_ATE_AMS_Endpoints',
			'\WPML_TM_ATE_Authentication',
			'\WPML_TM_AMS_ATE_Console_Section',
			'\WPML_TM_Admin_Sections',
			'\WPML_Translator_Records',
			'\WPML_Translator_Admin_Records',
			'\WPML_Translation_Manager_Records',
			'\WPML_TM_MCS_ATE_Strings',
			'\WPML_TM_AMS_Users',
			'\WPML_TM_AMS_Translator_Activation_Records',
			'\WPML_TM_REST_AMS_Clients',
			'\WPML_TM_AMS_Check_Website_ID',
			'\WPML_Translation_Job_Factory',
			\WPML_TM_Translation_Status::class,
			Storage::class,
			ApiCommunication::class,
			Lock::class,
			AteLockNotice::class,
		];
	}
}