26 lines
990 B
PHP
Executable File
26 lines
990 B
PHP
Executable File
<?php
|
|
namespace Magento\CmsGraphQl\Model\Resolver\Page;
|
|
|
|
/**
|
|
* Interceptor class for @see \Magento\CmsGraphQl\Model\Resolver\Page
|
|
*/
|
|
class Interceptor extends \Magento\CmsGraphQl\Model\Resolver\Page implements \Magento\Framework\Interception\InterceptorInterface
|
|
{
|
|
use \Magento\Framework\Interception\Interceptor;
|
|
|
|
public function __construct(\Magento\CmsGraphQl\Model\Resolver\DataProvider\Page $pageDataProvider)
|
|
{
|
|
$this->___init();
|
|
parent::__construct($pageDataProvider);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function resolve(\Magento\Framework\GraphQl\Config\Element\Field $field, $context, \Magento\Framework\GraphQl\Schema\Type\ResolveInfo $info, ?array $value = null, ?array $args = null)
|
|
{
|
|
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'resolve');
|
|
return $pluginInfo ? $this->___callPlugins('resolve', func_get_args(), $pluginInfo) : parent::resolve($field, $context, $info, $value, $args);
|
|
}
|
|
}
|