10 lines
157 B
PHP
10 lines
157 B
PHP
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
interface WalletApiDnsResolver
|
|
{
|
|
/** @return list<string> */
|
|
public function resolveAll(string $hostname): array;
|
|
}
|