?? GreyFile — Mystic File Browser

Current path: home/webdevt/prestashop17/vendor/geoip2/geoip2/src/



?? Go up: /home/webdevt/prestashop17/vendor/geoip2/geoip2

?? Viewing: 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);
}


??

??