Conditions | 3 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
41 | 2 | public function productReviewBySku(array $query = []): ProductReviewBySku\Request |
|
42 | { |
||
43 | 2 | if (!isset($query['store']) && isset($this->config['store'])) { |
|
44 | 2 | $query['store'] = $this->config['store']; |
|
45 | } |
||
46 | |||
47 | 2 | return (new ProductReviewBySku\Request($this))->withQuery($query); |
|
48 | } |
||
50 |