HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/shop.komma.nl/app/Vat/VatRateTotal.php
<?php declare(strict_types=1);


namespace App\Vat;

use App\Vat\Models\VatScenario;

/**
 * Class VatRateTotal
 *
 * @package App\Vat
 */
class VatRateTotal
{
    private string $name;
    private float $vatTotal;
    private string $vatScenarioEnum;

    public function getName(): string
    {
        return $this->name;
    }

    public function setName(string $name): VatRateTotal
    {
        $this->name = $name;
        return $this;
    }

    public function getVatScenarioEnum(): string
    {
        return $this->vatScenarioEnum;
    }

    public function setVatScenarioEnum(string $vatScenarioEnum): VatRateTotal
    {
        $this->vatScenarioEnum = $vatScenarioEnum;
        return $this;
    }

    public function getVatTotal(): float
    {
        return $this->vatTotal;
    }

    public function setVatTotal(float $vatTotal): VatRateTotal
    {
        $this->vatTotal = $vatTotal;
        return $this;
    }
}