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 16:13:24
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/Field.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 'field' GraphQL config element. * * Fields are used to describe possible values for a type/interface. */ class Field implements OutputFieldInterface { /** * @var string */ private $name; /** * @var string */ private $type; /** * @var array */ private $arguments; /** * @var bool */ private $required; /** * @var bool */ private $isList; /** * @var string */ private $resolver; /** * @var string */ private $description; /** * @var array */ private $cache; /** * @var array */ private $deprecated; /** * @param string $name * @param string $type * @param bool $required * @param bool $isList * @param string $itemType * @param string $resolver * @param string $description * @param array $arguments * @param array $cache * @param array $deprecated * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( string $name, string $type, bool $required, bool $isList, string $itemType = '', string $resolver = '', string $description = '', array $arguments = [], array $cache = [], array $deprecated = [] ) { $this->name = $name; $this->type = $isList ? $itemType : $type; $this->required = $required; $this->isList = $isList; $this->resolver = $resolver; $this->description = $description; $this->arguments = $arguments; $this->cache = $cache; $this->deprecated = $deprecated; } /** * Get the field name. * * @return string */ public function getName() : string { return $this->name; } /** * Get the type's configured name. * * @return string */ public function getTypeName() : string { return $this->type; } /** * Return true if field is a list of items. False otherwise. * * @return bool */ public function isList() : bool { return $this->isList; } /** * Return true if the field is required by an input type to be populated. False otherwise. * * @return bool */ public function isRequired() : bool { return $this->required; } /** * Get the resolver for a given field. If no resolver is specified, return an empty string. * * @return string */ public function getResolver() : string { return $this->resolver; } /** * Get the list of arguments configured for the field. Return an empty array if no arguments are configured. * * @return Argument[] */ public function getArguments() : array { return $this->arguments; } /** * Return the human-readable description of the field. * * @return string|null */ public function getDescription() : string { return $this->description; } /** * Return the cache tag for the field. * * @return array|null */ public function getCache() : array { return $this->cache; } /** * Return the deprecated annotation for the field * * @return array */ public function getDeprecated() : array { return $this->deprecated; } }