| Current Path : /home/c/i/n/cinepatreb/billetterie/vendor/geoip2/geoip2/src/ | 
| Current File : /home/c/i/n/cinepatreb/billetterie/vendor/geoip2/geoip2/src/ProviderInterface.php | 
<?php
namespace GeoIp2;
interface ProviderInterface
{
    /**
     * @param ipAddress
     *            IPv4 or IPv6 address to lookup.
     * @return \GeoIp2\Model\Country A Country model for the requested IP address.
     */
    public function country($ipAddress);
    /**
     * @param ipAddress
     *            IPv4 or IPv6 address to lookup.
     * @return \GeoIp2\Model\City A City model for the requested IP address.
     */
    public function city($ipAddress);
}