Skip to content

Commit 553b9d4

Browse files
OskarStarkderrabus
andauthored
Update src/Symfony/Component/Mailer/Bridge/Azure/Transport/AzureApiTransport.php
Co-authored-by: Alexander M. Turek <me@derrabus.de>
1 parent e373a70 commit 553b9d4

File tree

1 file changed

+6
-13
lines changed

1 file changed

+6
-13
lines changed

src/Symfony/Component/Mailer/Bridge/Azure/Transport/AzureApiTransport.php

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,16 @@ final class AzureApiTransport extends AbstractApiTransport
2828
{
2929
private const HOST = '%s.communication.azure.com';
3030

31+
/**
32+
* @param string $key User Access Key from Azure Communication Service (Primary or Secondary key).
33+
* @param string $resourceName The endpoint API URL to which to POST emails to Azure (https://{acsResourceName}.communication.azure.com/).
34+
* @param bool $disableTracking Indicates whether user engagement tracking should be disabled.
35+
* @param string $apiVersion The version of API to invoke.
36+
*/
3137
public function __construct(
32-
/**
33-
* User Access Key from Azure Communication Service (Primary or Secondary key).
34-
*/
3538
private string $key,
36-
/**
37-
* The endpoint API URL to which to POST emails to Azure
38-
* https://{acsResourceName}.communication.azure.com/.
39-
*/
4039
private string $resourceName,
41-
/**
42-
* Indicates whether user engagement tracking should be disabled.
43-
*/
4440
private bool $disableTracking = false,
45-
/**
46-
* The version of API to invoke.
47-
*/
4841
private string $apiVersion = '2023-03-31',
4942
HttpClientInterface $client = null,
5043
EventDispatcherInterface $dispatcher = null,

0 commit comments

Comments
 (0)