Files
shlink/module/Common/src/IpGeolocation/IpLocationResolverInterface.php
2019-02-17 13:01:21 +01:00

15 lines
301 B
PHP

<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Common\IpGeolocation;
use Shlinkio\Shlink\Common\Exception\WrongIpException;
interface IpLocationResolverInterface
{
/**
* @throws WrongIpException
*/
public function resolveIpLocation(string $ipAddress): Model\Location;
}