feat: start ovh API implement

This commit is contained in:
Maël Gangloff
2024-07-29 11:54:47 +02:00
parent 06182dc236
commit e744bbcef0
4 changed files with 26 additions and 4 deletions

View File

@@ -6,5 +6,10 @@ use App\Entity\Domain;
interface ConnectorInterface
{
public function orderDomain(Domain $domain, bool $acceptConditions, bool $ownerLegalAge, bool $waiveRetractationPeriod): void;
public function orderDomain(Domain $domain,
bool $acceptConditions,
bool $ownerLegalAge,
bool $waiveRetractationPeriod,
bool $dryRyn
): void;
}

View File

@@ -6,4 +6,5 @@ namespace App\Config;
enum TriggerAction: string
{
case SendEmail = 'email';
case BuyDomain = 'buy';
}