|
<?php
|
|
|
|
namespace App\Services\Dns;
|
|
|
|
interface HetznerDnsClient
|
|
{
|
|
/** Create or update a record; returns the provider record id. */
|
|
public function upsertRecord(string $fqdn, string $type, string $value): string;
|
|
|
|
public function deleteRecord(string $recordId): void;
|
|
}
|