mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
10 lines
217 B
PHP
10 lines
217 B
PHP
<?php
|
|
|
|
namespace App\Config;
|
|
|
|
use App\Entity\Domain;
|
|
|
|
interface ConnectorInterface
|
|
{
|
|
public function orderDomain(Domain $domain, bool $acceptConditions, bool $ownerLegalAge, bool $waiveRetractationPeriod): void;
|
|
} |