| Total Complexity | 2 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class TransferRecipient extends ApiResource |
||
| 6 | { |
||
| 7 | const OBJECT_NAME = 'transferrecipient'; |
||
| 8 | |||
| 9 | use ApiOperations\All; |
||
| 10 | use ApiOperations\Create; |
||
| 11 | use ApiOperations\Update; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @param array $batch |
||
| 15 | * |
||
| 16 | * @link https://paystack.com/docs/api/#transfer-recipient-bulk |
||
| 17 | * |
||
| 18 | * @return array|object |
||
| 19 | */ |
||
| 20 | public static function createBulk($batch) |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param $recipient_code |
||
| 29 | * |
||
| 30 | * @link https://paystack.com/docs/api/#transfer-recipient-delete |
||
| 31 | * |
||
| 32 | * @return array|object |
||
| 33 | */ |
||
| 34 | public static function delete($recipient_code) |
||
| 41 |