Skip to content

Commit bbefceb

Browse files
committed
-
1 parent 53a081d commit bbefceb

File tree

12 files changed

+12
-24
lines changed

12 files changed

+12
-24
lines changed

src/Symfony/Component/Mailer/Bridge/Brevo/Transport/BrevoApiTransport.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@
3333
final class BrevoApiTransport extends AbstractApiTransport
3434
{
3535
public function __construct(
36-
#[\SensitiveParameter]
37-
private string $key,
36+
#[\SensitiveParameter] private string $key,
3837
HttpClientInterface $client = null,
3938
EventDispatcherInterface $dispatcher = null,
4039
LoggerInterface $logger = null,

src/Symfony/Component/Mailer/Bridge/Infobip/Transport/InfobipApiTransport.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ final class InfobipApiTransport extends AbstractApiTransport
4242
];
4343

4444
public function __construct(
45-
#[\SensitiveParameter]
46-
private string $key,
45+
#[\SensitiveParameter] private string $key,
4746
HttpClientInterface $client = null,
4847
EventDispatcherInterface $dispatcher = null,
4948
LoggerInterface $logger = null,

src/Symfony/Component/Mailer/Bridge/MailPace/Transport/MailPaceApiTransport.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ final class MailPaceApiTransport extends AbstractApiTransport
3232
private const HOST = 'app.mailpace.com/api/v1';
3333

3434
public function __construct(
35-
#[\SensitiveParameter]
36-
private string $key,
35+
#[\SensitiveParameter] private string $key,
3736
HttpClientInterface $client = null,
3837
EventDispatcherInterface $dispatcher = null,
3938
LoggerInterface $logger = null,

src/Symfony/Component/Mailer/Bridge/Mailchimp/Transport/MandrillApiTransport.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ class MandrillApiTransport extends AbstractApiTransport
3333
private const HOST = 'mandrillapp.com';
3434

3535
public function __construct(
36-
#[\SensitiveParameter]
37-
private string $key,
36+
#[\SensitiveParameter] private string $key,
3837
HttpClientInterface $client = null,
3938
EventDispatcherInterface $dispatcher = null,
4039
LoggerInterface $logger = null,

src/Symfony/Component/Mailer/Bridge/Mailchimp/Transport/MandrillHttpTransport.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ class MandrillHttpTransport extends AbstractHttpTransport
3232
private const HOST = 'mandrillapp.com';
3333

3434
public function __construct(
35-
#[\SensitiveParameter]
36-
private string $key,
35+
#[\SensitiveParameter] private string $key,
3736
HttpClientInterface $client = null,
3837
EventDispatcherInterface $dispatcher = null,
3938
LoggerInterface $logger = null,

src/Symfony/Component/Mailer/Bridge/MailerSend/Transport/MailerSendApiTransport.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@
3030
final class MailerSendApiTransport extends AbstractApiTransport
3131
{
3232
public function __construct(
33-
#[\SensitiveParameter]
34-
private string $key,
33+
#[\SensitiveParameter] private string $key,
3534
HttpClientInterface $client = null,
3635
EventDispatcherInterface $dispatcher = null,
3736
LoggerInterface $logger = null,

src/Symfony/Component/Mailer/Bridge/Mailgun/Transport/MailgunApiTransport.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ class MailgunApiTransport extends AbstractApiTransport
3434
private const HOST = 'api.%region_dot%mailgun.net';
3535

3636
public function __construct(
37-
#[\SensitiveParameter]
38-
private string $key,
37+
#[\SensitiveParameter] private string $key,
3938
private string $domain,
4039
private ?string $region = null,
4140
HttpClientInterface $client = null,

src/Symfony/Component/Mailer/Bridge/Mailgun/Transport/MailgunHttpTransport.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ class MailgunHttpTransport extends AbstractHttpTransport
3333
private const HOST = 'api.%region_dot%mailgun.net';
3434

3535
public function __construct(
36-
#[\SensitiveParameter]
37-
private string $key,
36+
#[\SensitiveParameter] private string $key,
3837
private string $domain,
3938
private ?string $region = null,
4039
HttpClientInterface $client = null,

src/Symfony/Component/Mailer/Bridge/Mailjet/Transport/MailjetApiTransport.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@ class MailjetApiTransport extends AbstractApiTransport
5353

5454
public function __construct(
5555
private string $publicKey,
56-
#[\SensitiveParameter]
57-
private string $privateKey,
56+
#[\SensitiveParameter] private string $privateKey,
5857
HttpClientInterface $client = null,
5958
EventDispatcherInterface $dispatcher = null,
6059
LoggerInterface $logger = null,

src/Symfony/Component/Mailer/Bridge/Postmark/Transport/PostmarkApiTransport.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ class PostmarkApiTransport extends AbstractApiTransport
4040
private ?string $messageStream = null;
4141

4242
public function __construct(
43-
#[\SensitiveParameter]
44-
private string $key,
43+
#[\SensitiveParameter] private string $key,
4544
HttpClientInterface $client = null,
4645
EventDispatcherInterface $dispatcher = null,
4746
LoggerInterface $logger = null,

0 commit comments

Comments
 (0)