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