1 | <?php |
||
10 | class InvoiceVatItem |
||
11 | { |
||
12 | use InvoiceVatItemTrait; |
||
13 | |||
14 | /** |
||
15 | * Constructor. |
||
16 | * |
||
17 | * @param string $vatPercent The vat percent. |
||
18 | * @param integer $vatValue The vat value. |
||
19 | * @param string $completeNet The complete net. |
||
20 | */ |
||
21 | 6 | public function __construct($vatPercent, $vatValue, $completeNet) |
|
27 | } |
||
28 |