Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class Country extends Endpoint |
||
6 | { |
||
7 | protected const ENDPOINT = '/country'; |
||
8 | |||
9 | /** |
||
10 | * Gets a list of Countries that Paystack currently supports. |
||
11 | * |
||
12 | * @link https://paystack.com/docs/api/#miscellaneous-bank |
||
13 | */ |
||
14 | public function list(): self |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * Get a list of states for a country for address verification. |
||
23 | * |
||
24 | * @link https://paystack.com/docs/api/#miscellaneous-avs-states |
||
25 | */ |
||
26 | public function states(string $country_code): self |
||
33 |