/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/GraphQl/Query/Resolver/ResolveRequest.php
104 строки
2 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2019 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Framework\GraphQl\Query\Resolver; use Magento\Framework\GraphQl\Schema\Type\ResolveInfo; use Magento\Framework\GraphQl\Config\Element\Field; /** * Request made to a resolver. */ class ResolveRequest implements BatchRequestItemInterface, ResolveRequestInterface { /** * @var Field */ private $field; /** * @var ContextInterface */ private $context; /** * @var ResolveInfo */ private $info; /** * @var array|null */ private $value; /** * @var array|null */ private $args; /** * ResolverRequest constructor. * @param Field $field * @param ContextInterface $context * @param ResolveInfo $info * @param array|null $value * @param array|null $args */ public function __construct( Field $field, ContextInterface $context, ResolveInfo $info, ?array $value, ?array $args ) { $this->field = $field; $this->context = $context; $this->info = $info; $this->value = $value; $this->args = $args; } /** * @inheritDoc */ public function getField(): Field { return $this->field; } /** * @inheritDoc */ public function getContext(): ContextInterface { return $this->context; } /** * @inheritDoc */ public function getInfo(): ResolveInfo { return $this->info; } /** * @inheritDoc */ public function getValue(): ?array { return $this->value; } /** * @inheritDoc */ public function getArgs(): ?array { return $this->args; } }