Files
solidtime/app/Service/IpLookup/IpLookupServiceContract.php

11 lines
166 B
PHP

<?php
declare(strict_types=1);
namespace App\Service\IpLookup;
interface IpLookupServiceContract
{
public function lookup(string $ip): ?IpLookupResponseDto;
}