Your IP : 216.73.216.220


Current Path : /var/www/html/generated/code/Magento/WishlistGraphQl/Model/Resolver/WishlistById/
Upload File :
Current File : /var/www/html/generated/code/Magento/WishlistGraphQl/Model/Resolver/WishlistById/Interceptor.php

<?php
namespace Magento\WishlistGraphQl\Model\Resolver\WishlistById;

/**
 * Interceptor class for @see \Magento\WishlistGraphQl\Model\Resolver\WishlistById
 */
class Interceptor extends \Magento\WishlistGraphQl\Model\Resolver\WishlistById implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Wishlist\Model\ResourceModel\Wishlist $wishlistResource, \Magento\Wishlist\Model\WishlistFactory $wishlistFactory, \Magento\WishlistGraphQl\Mapper\WishlistDataMapper $wishlistDataMapper, \Magento\Wishlist\Model\Wishlist\Config $wishlistConfig)
    {
        $this->___init();
        parent::__construct($wishlistResource, $wishlistFactory, $wishlistDataMapper, $wishlistConfig);
    }

    /**
     * {@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);
    }
}