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/blije-gasten.komma.pro/app/Komma/Shop/Vat/TransientVatProperties.php
<?php declare(strict_types=1);


namespace App\Komma\Shop\Vat;

/**
 * Trait TransientVatProperties
 *
 * Provides some properties that are not saved / loaded to and from the database. Their function is to provide vat information inside of productables.
 *
 * @see VatService::calculateVatForProductable()
 * @property int $price_inc
 * @property int $vat_amount
 * @package App\Komma\Shop\Vat
 */
trait TransientVatProperties
{
    /** @var int $price_inc Transient property. The productable price including VAT in cents. Only available when it is passed trough the RateService::calculateVatForProductable method */
    public $price_inc = 0;

    /** @var int $vat_amount Transient property. The productable vat amount in cents. Only available when it is passed trough the RateService::calculateVatForProductable method */
    public $vat_amount = 0;

}