fix: update migration

This commit is contained in:
Maël Gangloff
2024-07-17 21:17:44 +02:00
parent 11c7207a1c
commit dba098441e
3 changed files with 20 additions and 73 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Controller;
use App\Service\RDAPService;
use Exception;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
class DomainRefreshController extends AbstractController
{
/**
* @throws Exception
*/
public function __invoke(string $ldhName, RDAPService $RDAPService): void
{
$RDAPService->registerDomains([$ldhName]);
}
}