Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class Request |
||
14 | { |
||
15 | /** |
||
16 | * @var CoreRequest |
||
17 | */ |
||
18 | public $CoreRequest; |
||
19 | |||
20 | /** |
||
21 | * @var ShoppingResponse |
||
22 | */ |
||
23 | public $ShoppingResponse; |
||
24 | |||
25 | public function __construct(CoreRequest $coreRequest) |
||
26 | { |
||
27 | $this->CoreRequest = $coreRequest; |
||
28 | } |
||
29 | |||
30 | public function setShoppingResponse(ShoppingResponse $ShoppingResponse) |
||
33 | } |
||
34 | } |
||
35 |