Server : Apache System : Linux pod-100823:apache2_74:v0.5.7 5.4.0-1138-gcp #147~18.04.1-Ubuntu SMP Mon Oct 7 21:46:26 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33.7 Disable Function : apache_child_terminate,apache_get_modules,apache_get_version,apache_getenv,apache_note,apache_setenv,disk_free_space,disk_total_space,diskfreespace,dl,exec,fastcgi_finish_request,link,opcache_compile_file,opcache_get_configuration,opcache_invalidate,opcache_is_script_cached,opcache_reset,passthru,pclose,pcntl_exec,popen,posix_getpid,posix_getppid,posix_getpwuid,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_uname,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,realpath_cache_get,shell_exec,show_source,symlink,system Directory : /nas/content/live/attorneyexperi/wp-content/plugins/ugslot/MWP/ServiceContainer/ |
<?php /* * This file is part of the ManageWP Worker plugin. * * (c) ManageWP LLC <contact@managewp.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ interface MWP_ServiceContainer_Interface { /** * @param array $parameters */ public function __construct(array $parameters = array()); /** * @param string $name * * @return mixed * * @throws InvalidArgumentException If the parameter does not exist. */ public function getParameter($name); /** * Set a parameter at runtime. Does not get saved permanently, instead it's only available on a per-request basis. * * @param string $name * @param mixed $value */ public function setParameter($name, $value); /** * @return MWP_WordPress_Context */ public function getWordPressContext(); /** * @return Symfony_EventDispatcher_EventDispatcherInterface */ public function getEventDispatcher(); /** * @return MWP_Worker_RequestStack */ public function getRequestStack(); /** * @return MWP_Action_Registry */ public function getActionRegistry(); /** * @return MWP_WordPress_Query_User */ public function getUserQuery(); /** * @return MWP_WordPress_Query_Post */ public function getPostQuery(); /** * @return MWP_WordPress_Query_Comment */ public function getCommentQuery(); /** * @return MWP_WordPress_Provider_Plugin */ public function getPluginProvider(); /** * @return MWP_WordPress_Provider_Theme */ public function getThemeProvider(); /** * @return MWP_Worker_Brand */ public function getBrand(); /** * @return MWP_Updater_AutoUpdateManager */ public function getAutoUpdateManager(); /** * @return MWP_Updater_UpdateManager */ public function getUpdateManager(); /** * @return MWP_Signer_Interface */ public function getSigner(); /** * @return MWP_Crypter_Interface */ public function getCrypter(); /** * @return MWP_Security_NonceManager */ public function getNonceManager(); /** * @return MWP_Worker_Configuration */ public function getConfiguration(); /** * @return Monolog_Logger */ public function getLogger(); /** * @return MWP_Worker_ResponseCallback */ public function getResponseCallback(); /** * @return Monolog_ErrorHandler */ public function getErrorHandler(); /** * @return Symfony_Process_ExecutableFinder */ public function getExecutableFinder(); /** * @return MWP_Extension_HitCounter */ public function getHitCounter(); /** * @return MWP_Monolog_Handler_JsonMessageHandler */ public function getJsonMessageHandler(); /** * @return Monolog_Logger */ public function getErrorLogger(); /** * @return MWP_System_Environment */ public function getSystemEnvironment(); /** * @return MWP_Updater_TraceableUpdaterSkin */ public function getUpdaterSkin(); /** * @return MWP_WordPress_SessionStore */ public function getSessionStore(); /** * @return MWP_Migration_Migration */ public function getMigration(); /** * @return Gelf_Publisher */ public function getGelfPublisher(); }