Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Request extends AbstractEndpointRequest |
||
12 | { |
||
13 | use HasQueryPagination; |
||
14 | |||
15 | 1 | public function store(string $store): static |
|
16 | { |
||
17 | 1 | return $this->addParameterToQuery('store', $store); |
|
18 | } |
||
19 | |||
20 | 2 | public function sku(string $sku): static |
|
21 | { |
||
22 | 2 | return $this->addParameterToQuery('sku', $sku); |
|
23 | } |
||
24 | |||
25 | 1 | public function mpn(string $mpn): static |
|
28 | } |
||
29 | |||
30 | 2 | public function call(array $options = []): Response |
|
38 |