Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class AbandonedCartApi implements AbandonedCartApiResourceInterface |
||
14 | { |
||
15 | protected const ABANDONED_CARTS_URI = 'api/3/ecomOrders'; |
||
16 | |||
17 | |||
18 | /** |
||
19 | * @var CommonResourceClientInterface |
||
20 | */ |
||
21 | private $resourceClient; |
||
22 | |||
23 | /** |
||
24 | * @param CommonResourceClientInterface $resourceClient |
||
25 | */ |
||
26 | public function __construct(CommonResourceClientInterface $resourceClient) |
||
27 | { |
||
28 | $this->resourceClient = $resourceClient; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @inheritDoc |
||
33 | */ |
||
34 | public function create(array $data): array |
||
37 | } |
||
38 | } |
||
39 |