1 | <?php |
||
20 | trait FloatExcludingVatPriceTrait { |
||
21 | |||
22 | /** |
||
23 | * Excluding VAT price. |
||
24 | * |
||
25 | * @var float|null |
||
26 | */ |
||
27 | protected $excludingVatPrice; |
||
28 | |||
29 | /** |
||
30 | * Get the excluding VAT price. |
||
31 | * |
||
32 | * @return float|null Returns the excluding VAT price. |
||
33 | */ |
||
34 | public function getExcludingVatPrice(): ?float { |
||
37 | |||
38 | /** |
||
39 | * Set the excluding VAT price. |
||
40 | * |
||
41 | * @param float|null $excludingVatPrice The excluding VAT price. |
||
42 | * @return self Returns this instance. |
||
43 | */ |
||
44 | public function setExcludingVatPrice(?float $excludingVatPrice): self { |
||
48 | } |
||
49 |