domain-watchdog/src/Config/Connector/ConnectorInterface.php

11 lines
166 B
PHP
Raw Normal View History

<?php
2024-07-29 15:28:05 +02:00
namespace App\Config\Connector;
2024-07-29 03:27:55 +02:00
use App\Entity\Domain;
interface ConnectorInterface
{
2024-07-30 14:56:08 +02:00
public function orderDomain(Domain $domain, bool $dryRun): void;
2024-08-02 23:24:52 +02:00
}