| Total Complexity | 3 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class Refund extends Endpoint |
||
| 6 | { |
||
| 7 | protected const ENDPOINT = '/refund'; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * Initiate a refund on your integration. |
||
| 11 | * |
||
| 12 | * @param array<string, mixed> $payload |
||
| 13 | * |
||
| 14 | * @link https://paystack.com/docs/api/#refund-create |
||
| 15 | */ |
||
| 16 | public function create(array $payload): self |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * List refunds available on your integration. |
||
| 25 | * |
||
| 26 | * @param array<string, mixed> $query |
||
| 27 | * |
||
| 28 | * @link https://paystack.com/docs/api/#refund-list |
||
| 29 | */ |
||
| 30 | public function list(array $query = []): self |
||
| 31 | { |
||
| 32 | $this->get($this->url(self::ENDPOINT), $query); |
||
| 33 | |||
| 34 | return $this; |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Get details of a refund on your integration. |
||
| 39 | * |
||
| 40 | * @link https://paystack.com/docs/api/#refund-fetch |
||
| 41 | */ |
||
| 42 | public function fetch(string $reference): self |
||
| 47 | } |
||
| 48 | } |
||
| 49 |