Differences Between: [Versions 310 and 311] [Versions 311 and 402] [Versions 311 and 403] [Versions 39 and 311]
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): \GeoIp2\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): \GeoIp2\Model\City; 22 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body