Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class GetPickupLocationCommand implements GetPickupLocationCommandSignature |
||
20 | { |
||
21 | use BaseDto; |
||
22 | |||
23 | private $product; |
||
24 | |||
25 | private $storeId = 0; |
||
|
|||
26 | |||
27 | private $fromDate; |
||
28 | |||
29 | private $toDate; |
||
30 | |||
31 | private $aggregate; |
||
32 | |||
33 | /** |
||
34 | * @inheritDoc |
||
35 | */ |
||
36 | public function setProduct(&$product): GetPickupLocationCommandSignature |
||
42 |