Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f3f1ebc

Browse filesBrowse files
committed
minor #30783 Fix author (fabpot)
This PR was merged into the 4.3-dev branch. Discussion ---------- Fix author | Q | A | ------------- | --- | Branch? | master | Bug fix? | yes | New feature? | no <!-- don't forget to update src/**/CHANGELOG.md files --> | BC breaks? | no <!-- see https://symfony.com/bc --> | Deprecations? | no <!-- don't forget to update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tests pass? | yes <!-- please add some, will be required by reviewers --> | Fixed tickets | #... <!-- #-prefixed issue number(s), if any --> | License | MIT | Doc PR | symfony/symfony-docs#... <!-- required for new features --> <!-- Write a short README entry for your feature/bugfix here (replace this comment block.) This will help people understand your PR and can be used as a start of the Doc PR. Additionally: - Bug fixes must be submitted against the lowest branch where they apply (lowest branches are regularly merged to upper ones so they get the fixes too). - Features and deprecations must be submitted against the master branch. --> Commits ------- 827e61f fixed author
2 parents 845cf9e + 827e61f commit f3f1ebc
Copy full SHA for f3f1ebc

File tree

Expand file treeCollapse file tree

14 files changed

+19
-8
lines changed
Filter options
Expand file treeCollapse file tree

14 files changed

+19
-8
lines changed

‎src/Symfony/Component/Mailer/Bridge/Amazon/Http/Api/SesTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Mailer/Bridge/Amazon/Http/Api/SesTransport.php
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
use Symfony\Contracts\HttpClient\HttpClientInterface;
2121

2222
/**
23+
* @author Kevin Verschaeve
24+
*
2325
* @experimental in 4.3
2426
*/
2527
class SesTransport extends AbstractApiTransport

‎src/Symfony/Component/Mailer/Bridge/Amazon/Http/SesTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Mailer/Bridge/Amazon/Http/SesTransport.php
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
use Symfony\Contracts\HttpClient\HttpClientInterface;
2121

2222
/**
23+
* @author Kevin Verschaeve
24+
*
2325
* @experimental in 4.3
2426
*/
2527
class SesTransport extends AbstractTransport

‎src/Symfony/Component/Mailer/Bridge/Amazon/Smtp/SesTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Mailer/Bridge/Amazon/Smtp/SesTransport.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use Symfony\Component\Mailer\Transport\Smtp\EsmtpTransport;
1717

1818
/**
19-
* @author Fabien Potencier <fabien@symfony.com>
19+
* @author Kevin Verschaeve
2020
*
2121
* @experimental in 4.3
2222
*/

‎src/Symfony/Component/Mailer/Bridge/Google/Smtp/GmailTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Mailer/Bridge/Google/Smtp/GmailTransport.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use Symfony\Component\Mailer\Transport\Smtp\EsmtpTransport;
1717

1818
/**
19-
* @author Fabien Potencier <fabien@symfony.com>
19+
* @author Kevin Verschaeve
2020
*
2121
* @experimental in 4.3
2222
*/

‎src/Symfony/Component/Mailer/Bridge/Mailchimp/Http/Api/MandrillTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Mailer/Bridge/Mailchimp/Http/Api/MandrillTransport.php
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
use Symfony\Contracts\HttpClient\HttpClientInterface;
2121

2222
/**
23+
* @author Kevin Verschaeve
2324
* @experimental in 4.3
2425
*/
2526
class MandrillTransport extends AbstractApiTransport

‎src/Symfony/Component/Mailer/Bridge/Mailchimp/Http/MandrillTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Mailer/Bridge/Mailchimp/Http/MandrillTransport.php
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
use Symfony\Contracts\HttpClient\HttpClientInterface;
2121

2222
/**
23+
* @author Kevin Verschaeve
24+
*
2325
* @experimental in 4.3
2426
*/
2527
class MandrillTransport extends AbstractTransport

‎src/Symfony/Component/Mailer/Bridge/Mailchimp/Smtp/MandrillTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Mailer/Bridge/Mailchimp/Smtp/MandrillTransport.php
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
use Symfony\Component\Mailer\Transport\Smtp\EsmtpTransport;
1717

1818
/**
19+
* @author Kevin Verschaeve
20+
*
1921
* @experimental in 4.3
2022
*/
2123
class MandrillTransport extends EsmtpTransport

‎src/Symfony/Component/Mailer/Bridge/Mailgun/Http/Api/MailgunTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Mailer/Bridge/Mailgun/Http/Api/MailgunTransport.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
use Symfony\Contracts\HttpClient\HttpClientInterface;
2222

2323
/**
24-
* @author Fabien Potencier <fabien@symfony.com>
24+
* @author Kevin Verschaeve
2525
*
2626
* @experimental in 4.3
2727
*/

‎src/Symfony/Component/Mailer/Bridge/Mailgun/Http/MailgunTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Mailer/Bridge/Mailgun/Http/MailgunTransport.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
use Symfony\Contracts\HttpClient\HttpClientInterface;
2323

2424
/**
25-
* @author Fabien Potencier <fabien@symfony.com>
25+
* @author Kevin Verschaeve
2626
*
2727
* @experimental in 4.3
2828
*/

‎src/Symfony/Component/Mailer/Bridge/Mailgun/Smtp/MailgunTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Mailer/Bridge/Mailgun/Smtp/MailgunTransport.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use Symfony\Component\Mailer\Transport\Smtp\EsmtpTransport;
1717

1818
/**
19-
* @author Fabien Potencier <fabien@symfony.com>
19+
* @author Kevin Verschaeve
2020
*
2121
* @experimental in 4.3
2222
*/

‎src/Symfony/Component/Mailer/Bridge/Postmark/Http/Api/PostmarkTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Mailer/Bridge/Postmark/Http/Api/PostmarkTransport.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
use Symfony\Contracts\HttpClient\HttpClientInterface;
2121

2222
/**
23-
* @author Fabien Potencier <fabien@symfony.com>
23+
* @author Kevin Verschaeve
2424
*
2525
* @experimental in 4.3
2626
*/

‎src/Symfony/Component/Mailer/Bridge/Postmark/Smtp/PostmarkTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Mailer/Bridge/Postmark/Smtp/PostmarkTransport.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use Symfony\Component\Mailer\Transport\Smtp\EsmtpTransport;
1717

1818
/**
19-
* @author Fabien Potencier <fabien@symfony.com>
19+
* @author Kevin Verschaeve
2020
*
2121
* @experimental in 4.3
2222
*/

‎src/Symfony/Component/Mailer/Bridge/Sendgrid/Http/Api/SendgridTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Mailer/Bridge/Sendgrid/Http/Api/SendgridTransport.php
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
use Symfony\Contracts\HttpClient\HttpClientInterface;
2222

2323
/**
24+
* @author Kevin Verschaeve
25+
*
2426
* @experimental in 4.3
2527
*/
2628
class SendgridTransport extends AbstractApiTransport

‎src/Symfony/Component/Mailer/Bridge/Sendgrid/Smtp/SendgridTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Mailer/Bridge/Sendgrid/Smtp/SendgridTransport.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use Symfony\Component\Mailer\Transport\Smtp\EsmtpTransport;
1717

1818
/**
19-
* @author Fabien Potencier <fabien@symfony.com>
19+
* @author Kevin Verschaeve
2020
*
2121
* @experimental in 4.3
2222
*/

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.