Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/generated/code/Magento/Quote/Model/Quote/TotalsCollector/
Upload File :
Current File : //home/rtorresani/www/generated/code/Magento/Quote/Model/Quote/TotalsCollector/Interceptor.php

<?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);
    }
}