Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
14 | public function findProducts(string $keywords = null, bool $onlyEnabledItems = true, int $page = 1) |
||
15 | { |
||
16 | $this->request( |
||
17 | "GET", |
||
18 | "products/search", |
||
19 | [ |
||
20 | "keywords" => $keywords, |
||
21 | "onlyEnabledItems" => $onlyEnabledItems, |
||
22 | "page" => $page, |
||
23 | "asSuggestion" => true |
||
24 | ] |
||
25 | ); |
||
26 | |||
27 | return $this; |
||
28 | } |
||
66 | } |