| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function createPlan(array $data = []) |
||
| 19 | { |
||
| 20 | return new Request('/2.0/subscription/plans_create', $data, [ |
||
| 21 | 'plan_name' => 'required|string', |
||
| 22 | 'plan_trial_days' => 'required|integer|min:0', |
||
| 23 | 'plan_type' => 'required|in:day,week,month,year', |
||
| 24 | 'plan_length' => 'required|integer|min:1', |
||
| 25 | ]); |
||
| 26 | } |
||
| 27 | } |
||
| 28 |