| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function createCoupon(array $data = []) |
||
| 21 | { |
||
| 22 | return new Request('/2.1/product/create_coupon', $data, [ |
||
| 23 | 'coupon_type' => 'required|in:product,checkout', |
||
| 24 | 'discount_type' => 'required|in:flat,percentage', |
||
| 25 | 'discount_amount' => 'required', |
||
| 26 | 'allowed_uses' => 'required|integer', |
||
| 27 | ]); |
||
| 28 | } |
||
| 29 | |||
| 48 |