Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class PaymentPlan extends ApiResource |
||
6 | { |
||
7 | const OBJECT_NAME = 'payment-plans'; |
||
8 | |||
9 | use ApiOperations\All; |
||
10 | use ApiOperations\Create; |
||
11 | use ApiOperations\Fetch; |
||
12 | use ApiOperations\Update; |
||
13 | |||
14 | /** |
||
15 | * @param string $paymentPlanId |
||
16 | * @return array|object |
||
17 | * @link https://developer.flutterwave.com/reference#cancel-a-payment-plan |
||
18 | */ |
||
19 | public static function cancel(string $paymentPlanId) |
||
26 |