| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 68 | public function delete($openid, array $products = []) |
||
| 69 | { |
||
| 70 | if (empty($products)) { |
||
| 71 | return $this->httpPostJson('mall/deletebizallshoppinglist', ['user_open_id' => $openid]); |
||
| 72 | } |
||
| 73 | |||
| 74 | return $this->httpPostJson('mall/deleteshoppinglist', ['user_open_id' => $openid, 'sku_product_list' => $products]); |
||
| 75 | } |
||
| 77 |