![]() 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/QuoteRepository/ |
<?php namespace Magento\Quote\Model\QuoteRepository; /** * Interceptor class for @see \Magento\Quote\Model\QuoteRepository */ class Interceptor extends \Magento\Quote\Model\QuoteRepository implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Quote\Model\QuoteFactory $quoteFactory, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Quote\Model\ResourceModel\Quote\Collection $quoteCollection, \Magento\Quote\Api\Data\CartSearchResultsInterfaceFactory $searchResultsDataFactory, \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $extensionAttributesJoinProcessor, ?\Magento\Framework\Api\SearchCriteria\CollectionProcessorInterface $collectionProcessor = null, ?\Magento\Quote\Model\ResourceModel\Quote\CollectionFactory $quoteCollectionFactory = null, ?\Magento\Quote\Api\Data\CartInterfaceFactory $cartFactory = null) { $this->___init(); parent::__construct($quoteFactory, $storeManager, $quoteCollection, $searchResultsDataFactory, $extensionAttributesJoinProcessor, $collectionProcessor, $quoteCollectionFactory, $cartFactory); } /** * {@inheritdoc} */ public function get($cartId, array $sharedStoreIds = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'get'); return $pluginInfo ? $this->___callPlugins('get', func_get_args(), $pluginInfo) : parent::get($cartId, $sharedStoreIds); } /** * {@inheritdoc} */ public function getForCustomer($customerId, array $sharedStoreIds = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getForCustomer'); return $pluginInfo ? $this->___callPlugins('getForCustomer', func_get_args(), $pluginInfo) : parent::getForCustomer($customerId, $sharedStoreIds); } /** * {@inheritdoc} */ public function getActive($cartId, array $sharedStoreIds = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getActive'); return $pluginInfo ? $this->___callPlugins('getActive', func_get_args(), $pluginInfo) : parent::getActive($cartId, $sharedStoreIds); } /** * {@inheritdoc} */ public function getActiveForCustomer($customerId, array $sharedStoreIds = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getActiveForCustomer'); return $pluginInfo ? $this->___callPlugins('getActiveForCustomer', func_get_args(), $pluginInfo) : parent::getActiveForCustomer($customerId, $sharedStoreIds); } /** * {@inheritdoc} */ public function save(\Magento\Quote\Api\Data\CartInterface $quote) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); return $pluginInfo ? $this->___callPlugins('save', func_get_args(), $pluginInfo) : parent::save($quote); } /** * {@inheritdoc} */ public function delete(\Magento\Quote\Api\Data\CartInterface $quote) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); return $pluginInfo ? $this->___callPlugins('delete', func_get_args(), $pluginInfo) : parent::delete($quote); } /** * {@inheritdoc} */ public function getList(\Magento\Framework\Api\SearchCriteriaInterface $searchCriteria) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getList'); return $pluginInfo ? $this->___callPlugins('getList', func_get_args(), $pluginInfo) : parent::getList($searchCriteria); } }