Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function __construct( |
||
18 | UuidInterface $locationUuid, |
||
19 | TypeEnum $locationType, |
||
20 | UuidInterface $productUuid, |
||
21 | UuidInterface $variantUuid, |
||
22 | int $balance |
||
23 | ) { |
||
24 | $this->locationUuid = $locationUuid; |
||
25 | $this->locationType = $locationType; |
||
26 | $this->productUuid = $productUuid; |
||
27 | $this->variantUuid = $variantUuid; |
||
28 | $this->balance = $balance; |
||
29 | } |
||
30 | |||
56 |