domain-watchdog/src/Config/ConnectorInterface.php

15 lines
372 B
PHP
Raw Normal View History

<?php
namespace App\Config;
2024-07-29 03:27:55 +02:00
use App\Entity\Domain;
interface ConnectorInterface
{
2024-07-29 11:54:47 +02:00
public function orderDomain(Domain $domain,
bool $acceptConditions,
bool $ownerLegalAge,
bool $waiveRetractationPeriod,
bool $dryRyn
): void;
}