26 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
namespace Magento\QuoteGraphQl\Model\Resolver\SetShippingMethodsOnCart;
 | 
						|
 | 
						|
/**
 | 
						|
 * Interceptor class for @see \Magento\QuoteGraphQl\Model\Resolver\SetShippingMethodsOnCart
 | 
						|
 */
 | 
						|
class Interceptor extends \Magento\QuoteGraphQl\Model\Resolver\SetShippingMethodsOnCart implements \Magento\Framework\Interception\InterceptorInterface
 | 
						|
{
 | 
						|
    use \Magento\Framework\Interception\Interceptor;
 | 
						|
 | 
						|
    public function __construct(\Magento\QuoteGraphQl\Model\Cart\GetCartForUser $getCartForUser, \Magento\QuoteGraphQl\Model\Cart\SetShippingMethodsOnCartInterface $setShippingMethodsOnCart, \Magento\QuoteGraphQl\Model\Cart\CheckCartCheckoutAllowance $checkCartCheckoutAllowance)
 | 
						|
    {
 | 
						|
        $this->___init();
 | 
						|
        parent::__construct($getCartForUser, $setShippingMethodsOnCart, $checkCartCheckoutAllowance);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * {@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);
 | 
						|
    }
 | 
						|
}
 |