1 | <?php |
||
6 | class Geo extends Base |
||
7 | { |
||
8 | /** |
||
9 | * Private constructor so only the client can create this |
||
10 | * @param Client $client |
||
11 | */ |
||
12 | 16 | public function __construct(Client $client) |
|
17 | |||
18 | /** |
||
19 | * Get addres based on ip addres |
||
20 | * @param string ip |
||
21 | * @return object Result of the request |
||
22 | */ |
||
23 | public function Get($ip) |
||
28 | } |
||
29 |