Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
44 | private function __construct( |
||
45 | string $cartId, |
||
46 | string $productCode, |
||
47 | int $quantity, |
||
48 | int $price, |
||
49 | string $productCurrencyCode |
||
50 | ) { |
||
51 | $this->cartId = $cartId; |
||
52 | $this->productCode = $productCode; |
||
53 | $this->quantity = $quantity; |
||
54 | $this->price = $price; |
||
55 | $this->productCurrencyCode = $productCurrencyCode; |
||
56 | } |
||
57 | |||
117 |