From c8761d9cc95be24403e49c202f307ee9824e50cf Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Tue, 11 Aug 2026 20:51:59 +0200 Subject: [PATCH] fix: Adapt to new command signature --- lib/Command/Load.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Command/Load.php b/lib/Command/Load.php index f49651247..425e0970c 100644 --- a/lib/Command/Load.php +++ b/lib/Command/Load.php @@ -27,7 +27,7 @@ public function __construct( parent::__construct(); } - protected function configure() + protected function configure(): void { $this ->setName('analytics:load') @@ -39,10 +39,10 @@ protected function configure() ); } - protected function execute(InputInterface $input, OutputInterface $output) + protected function execute(InputInterface $input, OutputInterface $output): int { $dataloadId = $input->getArgument('dataloadId'); $this->DataloadService->execute((int)$dataloadId); return 0; } -} \ No newline at end of file +}