Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class Get implements ServiceRequestInterface, WorkerInterface |
||
22 | { |
||
23 | use BaseDto, ServiceRequestBuilder; |
||
24 | |||
25 | private $apiMethodName = 'aliexpress.solution.seller.category.tree.query'; |
||
|
|||
26 | |||
27 | private $categoryId = 509; |
||
28 | |||
29 | private $filterNoPermission = true; |
||
30 | |||
31 | public function getRequest(): array |
||
32 | { |
||
33 | $this->filterLogic(); |
||
34 | $request = $this->build(); |
||
35 | return $request; |
||
36 | } |
||
37 | |||
38 | private function filterLogic() |
||
41 | } |
||
42 | } |
||
43 |