Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function __construct( |
||
15 | string $description, |
||
16 | int $quantity, |
||
17 | string $country, |
||
18 | string $tnvedCode, |
||
19 | int $value = null, |
||
20 | int $weight = null |
||
21 | ) { |
||
22 | $this->data['description'] = $description; |
||
23 | $this->data['amount'] = $quantity; |
||
24 | $this->data['country-code'] = $country; |
||
25 | $this->data['tnved-code'] = $tnvedCode; |
||
26 | $this->data['value'] = $value; |
||
27 | $this->data['weight'] = $weight; |
||
28 | } |
||
60 |