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 11:38:51
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/dev2.destoffenstraat.com/vendor-1/magento/framework/GraphQl/Config/Element/

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

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/GraphQl/Config/Element/Argument.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\GraphQl\Config\Element; /** * Class representing 'argument' GraphQL config element. * * Arguments of a type in GraphQL are used to gather client input to affect how a query will return data. */ class Argument implements FieldInterface { /** * @var string */ private $name; /** * @var string */ private $type; /** * @var string */ private $description; /** * @var string */ private $baseType; /** * @var bool */ private $required; /** * @var bool */ private $isList; /** * @var bool */ private $itemsRequired; /** * @var string|null */ private $defaultValue; /** * @var array */ private $deprecated; /** * @param string $name * @param string $type * @param string $baseType * @param string $description * @param bool $required * @param bool $isList * @param string $itemType * @param bool $itemsRequired * @param string $defaultValue * @param array $deprecated * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( string $name, string $type, string $baseType, string $description, bool $required, bool $isList, string $itemType = '', bool $itemsRequired = false, string $defaultValue = null, array $deprecated = [] ) { $this->name = $name; $this->type = $isList ? $itemType : $type; $this->baseType = $baseType; $this->description = $description; $this->required = $required; $this->isList = $isList; $this->itemsRequired = $itemsRequired; $this->defaultValue = $defaultValue; $this->deprecated = $deprecated; } /** * Get the name of the argument. * * @return string */ public function getName() : string { return $this->name; } /** * Get the argument type's configured name * * @return string */ public function getTypeName() : string { return $this->type; } /** * Get the argument's base type. This can be used to inherit fields for a filter or sort input, etc. * * @return string */ public function getBaseType() : string { return $this->baseType; } /** * Return true if argument is a list of input items, otherwise false if it is a single object/scalar. * * @return bool */ public function isList() : bool { return $this->isList; } /** * Return true if argument is required when invoking the query where the argument is specified. False otherwise. * * @return bool */ public function isRequired() : bool { return $this->required; } /** * Return true if item is a list, and if that list must be populated by at least one item. False otherwise. * * @return bool */ public function areItemsRequired() : bool { return $this->itemsRequired; } /** * Return the human-readable description of the argument containing it's documentation. * * @return string */ public function getDescription() : string { return $this->description; } /** * Return defaultValue if argument is a scalar and has a configured defaultValue. Otherwise return an empty string. * * @return string|null */ public function getDefaultValue() : ?string { return $this->defaultValue; } /** * Return true if defaultValue is set, otherwise false * * @return bool */ public function hasDefaultValue() : bool { return $this->defaultValue ? true: false; } /** * Return the deprecated * * @return array */ public function getDeprecated() : array { return $this->deprecated; } }