This commit is contained in:
Marko Jovanovic 2025-10-16 15:10:12 +02:00
parent c6eb662e5e
commit 7c5928ccb6

View File

@ -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();
}