File tree Expand file tree Collapse file tree 1 file changed +6
-13
lines changed
src/Symfony/Component/Mailer/Bridge/Azure/Transport Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -28,23 +28,16 @@ final class AzureApiTransport extends AbstractApiTransport
28
28
{
29
29
private const HOST = '%s.communication.azure.com ' ;
30
30
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
+ */
31
37
public function __construct (
32
- /**
33
- * User Access Key from Azure Communication Service (Primary or Secondary key).
34
- */
35
38
private string $ key ,
36
- /**
37
- * The endpoint API URL to which to POST emails to Azure
38
- * https://{acsResourceName}.communication.azure.com/.
39
- */
40
39
private string $ resourceName ,
41
- /**
42
- * Indicates whether user engagement tracking should be disabled.
43
- */
44
40
private bool $ disableTracking = false ,
45
- /**
46
- * The version of API to invoke.
47
- */
48
41
private string $ apiVersion = '2023-03-31 ' ,
49
42
HttpClientInterface $ client = null ,
50
43
EventDispatcherInterface $ dispatcher = null ,
You can’t perform that action at this time.
0 commit comments