mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-06 20:37:32 +00:00
11 lines
166 B
PHP
11 lines
166 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service\IpLookup;
|
|
|
|
interface IpLookupServiceContract
|
|
{
|
|
public function lookup(string $ip): ?IpLookupResponseDto;
|
|
}
|