Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
27 | public function getAds( |
||
28 | int $advertiserId, |
||
29 | ?array $fields = null, |
||
30 | ?array $filtering = null, |
||
31 | ?int $page = null, |
||
32 | ?int $pageSize = null |
||
33 | ): array { |
||
34 | return $this->requestApi( |
||
35 | 'GET', |
||
36 | '/open_api/v1.3/ad/get/', |
||
37 | [ |
||
38 | 'advertiser_id' => $advertiserId, |
||
39 | 'fields' => $fields, |
||
40 | 'filtering' => $filtering, |
||
41 | 'page' => $page, |
||
42 | 'page_size' => $pageSize |
||
43 | ] |
||
47 |