1 | <?php |
||
14 | class IpAddressesClient extends NStackClient |
||
15 | { |
||
16 | /** @var string */ |
||
17 | protected $path = 'geographic/ip-address'; |
||
18 | |||
19 | /** |
||
20 | * index |
||
21 | * |
||
22 | * @return IpAddress |
||
23 | * @throws FailedToParseException |
||
24 | * @author Tiago Araujo <[email protected]> |
||
25 | */ |
||
26 | 1 | public function index(): IpAddress |
|
33 | |||
34 | /** |
||
35 | * show |
||
36 | * |
||
37 | * |
||
38 | * @param String $ip |
||
39 | * @return IpAddress |
||
40 | * @throws FailedToParseException |
||
41 | * @author Tiago Araujo <[email protected]> |
||
42 | */ |
||
43 | 1 | public function show(String $ip): IpAddress |
|
50 | } |