b374k
m1n1 1.01
Apache/2.4.41 (Ubuntu)
Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
uid=33(www-data) gid=33(www-data) groups=33(www-data)
server ip : 62.171.164.128 | your ip : 127.0.0.1
safemode OFF
 >  / home / dev2.destoffenstraat.com / generated / code / Magento / Tax / Model / TaxCalculation /
Filename/home/dev2.destoffenstraat.com/generated/code/Magento/Tax/Model/TaxCalculation/Interceptor.php
Size2.27 kb
Permissionrwxrwxrwx
Ownerroot : root
Create time17-Aug-2025 10:26
Last modified26-Jul-2025 18:07
Last accessed22-Aug-2025 22:57
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
namespace Magento\Tax\Model\TaxCalculation;

/**
* Interceptor class for @see \Magento\Tax\Model\TaxCalculation
*/
class Interceptor extends \Magento\Tax\Model\TaxCalculation implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;

public function __construct(\Magento\Tax\Model\Calculation $calculation, \Magento\Tax\Model\Calculation\CalculatorFactory $calculatorFactory, \Magento\Tax\Model\Config $config, \Magento\Tax\Api\Data\TaxDetailsInterfaceFactory $taxDetailsDataObjectFactory, \Magento\Tax\Api\Data\TaxDetailsItemInterfaceFactory $taxDetailsItemDataObjectFactory, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Tax\Api\TaxClassManagementInterface $taxClassManagement, \Magento\Framework\Api\DataObjectHelper $dataObjectHelper)
{
$this->___init();
parent::__construct($calculation, $calculatorFactory, $config, $taxDetailsDataObjectFactory, $taxDetailsItemDataObjectFactory, $storeManager, $taxClassManagement, $dataObjectHelper);
}

/**
* {@inheritdoc}
*/
public function calculateTax(\Magento\Tax\Api\Data\QuoteDetailsInterface $quoteDetails, $storeId = null, $round = true)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'calculateTax');
return $pluginInfo ? $this->___callPlugins('calculateTax', func_get_args(), $pluginInfo) : parent::calculateTax($quoteDetails, $storeId, $round);
}

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

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