Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/vendor/magento/framework/GraphQl/Config/Element/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/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;
    }
}

Spamworldpro Mini