Your IP : 216.73.216.220


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

<?php
namespace Magento\Quote\Model\Cart\TotalsConverter;

/**
 * Interceptor class for @see \Magento\Quote\Model\Cart\TotalsConverter
 */
class Interceptor extends \Magento\Quote\Model\Cart\TotalsConverter implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Quote\Api\Data\TotalSegmentInterfaceFactory $factory)
    {
        $this->___init();
        parent::__construct($factory);
    }

    /**
     * {@inheritdoc}
     */
    public function process($addressTotals)
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'process');
        return $pluginInfo ? $this->___callPlugins('process', func_get_args(), $pluginInfo) : parent::process($addressTotals);
    }
}