1 | <?php |
||
20 | trait FloatVatAmountTrait { |
||
21 | |||
22 | /** |
||
23 | * VAT amount. |
||
24 | * |
||
25 | * @var float |
||
26 | */ |
||
27 | protected $vatAmount; |
||
28 | |||
29 | /** |
||
30 | * Get the VAT amount. |
||
31 | * |
||
32 | * @return float Returns the VAT amount. |
||
33 | */ |
||
34 | public function getVatAmount() { |
||
37 | |||
38 | /** |
||
39 | * Set the VAT amount. |
||
40 | * |
||
41 | * @param float $vatAmount The VAT amount. |
||
42 | */ |
||
43 | public function setVatAmount($vatAmount) { |
||
47 | } |
||
48 |