refactor: split ProcessDomain message

This commit is contained in:
Maël Gangloff
2024-08-26 23:45:30 +02:00
parent 142be134f8
commit 739fc7fcbf
9 changed files with 137 additions and 69 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Message;
final readonly class UpdateDomainsFromWatchlist
{
public function __construct(
public string $watchListToken,
) {
}
}