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