| Current Path : /var/www/html/mediawiki-1.43.1/extensions/CookieWarning/includes/ |
| Current File : /var/www/html/mediawiki-1.43.1/extensions/CookieWarning/includes/GeoLocation.php |
<?php
namespace CookieWarning;
interface GeoLocation {
/**
* Tries to locate the given IP address.
*
* @param string $ip The IP address to lookup
* @return null|string NULL on error or if locating the IP was not possible, the country
* code otherwise
*/
public function locate( $ip );
}