From 7c5928ccb6d25072d297e17f3e8f3b3a246a3576 Mon Sep 17 00:00:00 2001 From: Marko Jovanovic Date: Thu, 16 Oct 2025 15:10:12 +0200 Subject: [PATCH] Bugfix --- src/Command/CleanMobileCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Command/CleanMobileCommand.php b/src/Command/CleanMobileCommand.php index 2382b52..7fcfe05 100644 --- a/src/Command/CleanMobileCommand.php +++ b/src/Command/CleanMobileCommand.php @@ -30,11 +30,11 @@ use Symfony\Contracts\HttpClient\HttpClientInterface; )] final class CleanMobileCommand extends Command { - private HttpClientInterface $http; private string $backendApiURL = 'https://umfragetool.ukbonn.de/api/api/participant/create-qm-befr-participant'; public function __construct( - private readonly EntityManagerInterface $em + private readonly EntityManagerInterface $em, + private readonly HttpClientInterface $http ) { parent::__construct(); }