From 410b287d05a767e196d575112f263fc73e243716 Mon Sep 17 00:00:00 2001 From: Manuel Aranda Date: Wed, 7 May 2025 16:54:24 +0200 Subject: [PATCH] refs #1826. Change some env var --- src/Service/UDS/UDSClient.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Service/UDS/UDSClient.php b/src/Service/UDS/UDSClient.php index a8e79c4..fe6dbad 100644 --- a/src/Service/UDS/UDSClient.php +++ b/src/Service/UDS/UDSClient.php @@ -23,16 +23,16 @@ class UDSClient private string $scrambler; public function __construct( - private HttpClientInterface $httpClient, - private readonly EntityManagerInterface $entityManager, + private HttpClientInterface $httpClient, + private readonly EntityManagerInterface $entityManager, #[Autowire(env: 'UDS_URL')] - private string $udsAPIurl, + private readonly string $udsAPIurl, #[Autowire(env: 'UDS_AUTH_LOGIN')] - private string $udsAuthLogin, + private readonly string $udsAuthLogin, #[Autowire(env: 'UDS_AUTH_USERNAME')] - private string $udsAuthUsername, + private readonly string $udsAuthUsername, #[Autowire(env: 'UDS_AUTH_PASSWORD')] - private string $udsAuthPassword, + private readonly string $udsAuthPassword, ) { }