Total Complexity | 1 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class SelectedOffer |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | public $OfferID; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | public $OwnerCode; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | public $ShoppingResponseRefID; |
||
27 | |||
28 | /** |
||
29 | * @var SelectedOfferItem[] |
||
30 | */ |
||
31 | public $SelectedOfferItem; |
||
32 | |||
33 | /** |
||
34 | * @param string $offerId |
||
35 | * @param string $ownerCode |
||
36 | * @param string $shoppingResponseRefId |
||
37 | * @param SelectedOfferItem[] $selectedOfferItem |
||
38 | */ |
||
39 | public function __construct($offerId, $ownerCode, $shoppingResponseRefId, array $selectedOfferItem) |
||
47 |