![]() 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/TotalsCollector/ |
<?php namespace Magento\Quote\Model\Quote\TotalsCollector; /** * Interceptor class for @see \Magento\Quote\Model\Quote\TotalsCollector */ class Interceptor extends \Magento\Quote\Model\Quote\TotalsCollector implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Quote\Model\Quote\Address\Total\Collector $totalCollector, \Magento\Quote\Model\Quote\Address\Total\CollectorFactory $totalCollectorFactory, \Magento\Framework\Event\ManagerInterface $eventManager, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Quote\Model\Quote\Address\TotalFactory $totalFactory, \Magento\Quote\Model\Quote\TotalsCollectorList $collectorList, \Magento\Quote\Model\ShippingFactory $shippingFactory, \Magento\Quote\Model\ShippingAssignmentFactory $shippingAssignmentFactory, \Magento\Quote\Model\QuoteValidator $quoteValidator, ?\Magento\Quote\Model\Quote\QuantityCollector $quantityCollector = null) { $this->___init(); parent::__construct($totalCollector, $totalCollectorFactory, $eventManager, $storeManager, $totalFactory, $collectorList, $shippingFactory, $shippingAssignmentFactory, $quoteValidator, $quantityCollector); } /** * {@inheritdoc} */ public function collectQuoteTotals(\Magento\Quote\Model\Quote $quote) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'collectQuoteTotals'); return $pluginInfo ? $this->___callPlugins('collectQuoteTotals', func_get_args(), $pluginInfo) : parent::collectQuoteTotals($quote); } /** * {@inheritdoc} */ public function collect(\Magento\Quote\Model\Quote $quote) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'collect'); return $pluginInfo ? $this->___callPlugins('collect', func_get_args(), $pluginInfo) : parent::collect($quote); } /** * {@inheritdoc} */ public function collectAddressTotals(\Magento\Quote\Model\Quote $quote, \Magento\Quote\Model\Quote\Address $address) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'collectAddressTotals'); return $pluginInfo ? $this->___callPlugins('collectAddressTotals', func_get_args(), $pluginInfo) : parent::collectAddressTotals($quote, $address); } }