|
Ultima modificación |
Ver Log
|
| Rev |
Autor |
Línea Nro. |
Línea |
| 1 |
efrain |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
declare(strict_types=1);
|
|
|
4 |
|
|
|
5 |
namespace GeoIp2;
|
|
|
6 |
|
|
|
7 |
interface ProviderInterface
|
|
|
8 |
{
|
|
|
9 |
/**
|
|
|
10 |
* @param string $ipAddress an IPv4 or IPv6 address to lookup
|
|
|
11 |
*
|
|
|
12 |
* @return \GeoIp2\Model\Country a Country model for the requested IP address
|
|
|
13 |
*/
|
|
|
14 |
public function country(string $ipAddress): Model\Country;
|
|
|
15 |
|
|
|
16 |
/**
|
|
|
17 |
* @param string $ipAddress an IPv4 or IPv6 address to lookup
|
|
|
18 |
*
|
|
|
19 |
* @return \GeoIp2\Model\City a City model for the requested IP address
|
|
|
20 |
*/
|
|
|
21 |
public function city(string $ipAddress): Model\City;
|
|
|
22 |
}
|