[ Index ]

PHP Cross Reference of YOURLS

title

Body

[close]

/includes/vendor/geoip2/geoip2/src/ -> ProviderInterface.php (source)

   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  }


Generated: Tue Apr 1 05:10:01 2025 Cross-referenced by PHPXref 0.7.1