From cd030bdc0e48d59b6fab418c88d0404abe23a6b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gangloff?= Date: Sat, 3 Aug 2024 16:08:59 +0200 Subject: [PATCH] feat: add ProcessWatchlists command --- src/Command/ProcessWatchlistsCommand.php | 42 ++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 src/Command/ProcessWatchlistsCommand.php diff --git a/src/Command/ProcessWatchlistsCommand.php b/src/Command/ProcessWatchlistsCommand.php new file mode 100644 index 0000000..a5d4f41 --- /dev/null +++ b/src/Command/ProcessWatchlistsCommand.php @@ -0,0 +1,42 @@ +bus->dispatch(new ProcessWatchListsTrigger()); + + $io->success('Watchlist processing triggered!'); + + return Command::SUCCESS; + } +}