JEMBOT MAWOT Bypass Shell
<?php
/**
* Mollie https://www.mollie.nl
*
* @author Mollie B.V. <info@mollie.nl>
* @copyright Mollie B.V.
* @license https://github.com/mollie/PrestaShop/blob/master/LICENSE.md
*
* @see https://github.com/mollie/PrestaShop
* @codingStandardsIgnoreStart
*/
namespace Mollie\DTO;
if (!defined('_PS_VERSION_')) {
exit;
}
class PaymentFeeData
{
/** @var float */
private $paymentFeeTaxIncl;
/** @var float */
private $paymentFeeTaxExcl;
/** @var float */
private $taxRate;
/** @var bool */
private $active;
public function __construct(
float $paymentFeeTaxIncl,
float $paymentFeeTaxExcl,
float $taxRate,
bool $active
) {
$this->paymentFeeTaxIncl = $paymentFeeTaxIncl;
$this->paymentFeeTaxExcl = $paymentFeeTaxExcl;
$this->taxRate = $taxRate;
$this->active = $active;
}
public function getPaymentFeeTaxIncl(): float
{
return $this->paymentFeeTaxIncl;
}
public function getPaymentFeeTaxExcl(): float
{
return $this->paymentFeeTaxExcl;
}
public function getTaxRate(): float
{
return $this->taxRate;
}
public function isActive(): bool
{
return $this->active;
}
}
xxxxx1.0, XXX xxxx