![]() 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/generated/code/Magento/Quote/Model/Quote/Item/Processor/ |
<?php namespace Magento\Quote\Model\Quote\Item\Processor; /** * Interceptor class for @see \Magento\Quote\Model\Quote\Item\Processor */ class Interceptor extends \Magento\Quote\Model\Quote\Item\Processor implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Quote\Model\Quote\ItemFactory $quoteItemFactory, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\App\State $appState) { $this->___init(); parent::__construct($quoteItemFactory, $storeManager, $appState); } /** * {@inheritdoc} */ public function init(\Magento\Catalog\Model\Product $product, \Magento\Framework\DataObject $request) : \Magento\Quote\Model\Quote\Item { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'init'); return $pluginInfo ? $this->___callPlugins('init', func_get_args(), $pluginInfo) : parent::init($product, $request); } /** * {@inheritdoc} */ public function prepare(\Magento\Quote\Model\Quote\Item $item, \Magento\Framework\DataObject $request, \Magento\Catalog\Model\Product $candidate) : void { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'prepare'); $pluginInfo ? $this->___callPlugins('prepare', func_get_args(), $pluginInfo) : parent::prepare($item, $request, $candidate); } /** * {@inheritdoc} */ public function merge(\Magento\Quote\Model\Quote\Item $source, \Magento\Quote\Model\Quote\Item $target) : \Magento\Quote\Model\Quote\Item { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'merge'); return $pluginInfo ? $this->___callPlugins('merge', func_get_args(), $pluginInfo) : parent::merge($source, $target); } }