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/VatScenarioEnum.php
<?php declare(strict_types=1);


namespace App\Vat;


use App\Products\Product\Product;
use Komma\KMS\Base\Enum;

/**
 * Class VatScenarioEnum
 *
 * Links numbers that can be stored for reference to scenarios.
 *
 * @see Product
 * @see Product translations
 * @see
 * @package App\Vat
 */
class VatScenarioEnum extends Enum
{
    const zero = 'zero';
    const low_inc = 'low_inc';
    const low_ex = 'low_ex';
    const high_inc = 'high_inc';
    const high_ex = 'high_ex';
}