Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class EditBasketResponse implements ResponseInterface |
||
17 | { |
||
18 | /** |
||
19 | * @JMS\Type("DalliSDK\Models\OrderResponse") |
||
20 | * @JMS\SerializedName("order") |
||
21 | * @var OrderResponse |
||
22 | */ |
||
23 | private OrderResponse $item; |
||
24 | |||
25 | /** |
||
26 | * @return OrderResponse |
||
27 | */ |
||
28 | 2 | public function getItem(): OrderResponse |
|
33 |