mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-26 14:15:45 +00:00
17 lines
450 B
PHP
17 lines
450 B
PHP
<?php
|
|
|
|
namespace App\Config\Connector;
|
|
|
|
use App\Entity\Domain;
|
|
|
|
interface ConnectorInterface
|
|
{
|
|
public static function verifyAuthData(array $authData): array;
|
|
|
|
public function orderDomain(Domain $domain,
|
|
bool $acceptConditions,
|
|
bool $ownerLegalAge,
|
|
bool $waiveRetractationPeriod,
|
|
bool $dryRyn
|
|
): void;
|
|
} |