refs #1826. Change some env var
testing/ogcore-api/pipeline/head This commit looks good Details

pull/30/head
Manuel Aranda Rosales 2025-05-07 16:54:24 +02:00
parent 24c5451f52
commit 410b287d05
1 changed files with 6 additions and 6 deletions

View File

@ -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,
)
{
}