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